From ad0da06f65bb89a123bf26656bb55ba58d3ceef1 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Sat, 2 Apr 2016 10:28:38 +0200 Subject: [PATCH] Forgot to remove these from the debug string. --- Core/HLE/sceDisplay.cpp | 1 - GPU/GLES/GLES_GPU.cpp | 3 +-- GPU/GPUCommon.cpp | 1 + 3 files changed, 2 insertions(+), 3 deletions(-) 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() {