From 01e4a5148d633c7e251076592c1fdce3435b6202 Mon Sep 17 00:00:00 2001 From: Gregory Hainaut Date: Fri, 29 May 2015 16:50:27 +0200 Subject: [PATCH] gsdx-ogl: avoid crash in debug/dev build Don't be silly, don't put gl trace in EE thread. --- plugins/GSdx/GS.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/GSdx/GS.cpp b/plugins/GSdx/GS.cpp index e1ea6662b8..5418aacef0 100644 --- a/plugins/GSdx/GS.cpp +++ b/plugins/GSdx/GS.cpp @@ -574,7 +574,6 @@ EXPORT_C GSinitReadFIFO(uint8* mem) EXPORT_C GSreadFIFO(uint8* mem) { - GL_PERF("Read FIFO1"); try { s_gs->ReadFIFO(mem, 1); @@ -598,7 +597,6 @@ EXPORT_C GSinitReadFIFO2(uint8* mem, uint32 size) EXPORT_C GSreadFIFO2(uint8* mem, uint32 size) { - GL_PERF("Read FIFO2"); try { s_gs->ReadFIFO(mem, size);