diff --git a/Core/HLE/sceDisplay.cpp b/Core/HLE/sceDisplay.cpp index 9d53b2dac0..c1a876d4eb 100644 --- a/Core/HLE/sceDisplay.cpp +++ b/Core/HLE/sceDisplay.cpp @@ -171,7 +171,6 @@ static void ScheduleLagSync(int over = 0) { } void __DisplayInit() { - gpuStats.Reset(); hasSetMode = false; mode = 0; resumeMode = 0; diff --git a/GPU/GLES/GLES_GPU.cpp b/GPU/GLES/GLES_GPU.cpp index 246c559fb7..ae8080d49e 100644 --- a/GPU/GLES/GLES_GPU.cpp +++ b/GPU/GLES/GLES_GPU.cpp @@ -2130,8 +2130,7 @@ void GLES_GPU::GetStats(char *buffer, size_t bufsize) { "Cached, Uncached Vertices Drawn: %i, %i\n" "FBOs active: %i\n" "Textures active: %i, decoded: %i invalidated: %i\n" - "Vertex, Fragment, Programs loaded: %i, %i, %i\n" - "Pushbuffer space used: UBO %d, Vtx %d, Idx %d\n", + "Vertex, Fragment, Programs loaded: %i, %i, %i\n", gpuStats.numVBlanks, gpuStats.msProcessingDisplayLists * 1000.0f, gpuStats.numDrawCalls, diff --git a/GPU/GPUCommon.cpp b/GPU/GPUCommon.cpp index 9b064ea3b7..3bec703e06 100644 --- a/GPU/GPUCommon.cpp +++ b/GPU/GPUCommon.cpp @@ -35,6 +35,7 @@ GPUCommon::GPUCommon() : SetThreadEnabled(g_Config.bSeparateCPUThread); gstate.Reset(); gstate_c.Reset(); + gpuStats.Reset(); } GPUCommon::~GPUCommon() {