Print warning when a render command is dropped

This commit is contained in:
Tim Angus 2025-11-18 13:51:15 +00:00
parent fcde28419f
commit dcbcb12ba2
2 changed files with 2 additions and 0 deletions

View File

@ -131,6 +131,7 @@ void *R_GetCommandBufferReserved( int bytes, int reservedBytes ) {
ri.Error( ERR_FATAL, "R_GetCommandBuffer: bad size %i", bytes );
}
// if we run out of room, just start dropping commands
ri.Printf( PRINT_WARNING, "Failed to allocate render command of size %d\n", bytes );
return NULL;
}

View File

@ -138,6 +138,7 @@ void *R_GetCommandBufferReserved( int bytes, int reservedBytes ) {
ri.Error( ERR_FATAL, "R_GetCommandBuffer: bad size %i", bytes );
}
// if we run out of room, just start dropping commands
ri.Printf( PRINT_WARNING, "Failed to allocate render command of size %d\n", bytes );
return NULL;
}