Write info about dropping command

Write info about dropping command

diff --git a/src/engine/GPURenderer/r_cmds.cpp b/src/engine/GPURenderer/r_cmds.cpp
index 4d961d1..915fb8f 100644
--- a/src/engine/GPURenderer/r_cmds.cpp
+++ b/src/engine/GPURenderer/r_cmds.cpp
@@ -188,7 +188,9 @@ void* R_GetCommandBufferReserved( sint bytes, sint reservedBytes )
         {
             Com_Error( ERR_FATAL, "R_GetCommandBuffer: bad size %i", bytes );
         }
-        // if we run out of room, just start dropping commands
+        
+        CL_RefPrintf( PRINT_ALL, "R_GetCommandBufferReserved (%i, %i): out of room, dropping command\n", bytes, reservedBytes );
+        
         return nullptr;
     }
     

GitHub
sha: 97c28b23