From e78d85f386653ef21f73202879089901001737f0 Mon Sep 17 00:00:00 2001 From: Henrik Rydgard Date: Tue, 14 Mar 2017 10:40:18 +0100 Subject: [PATCH] Don't warn about slowness in debug builds --- Core/HLE/sceDisplay.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/HLE/sceDisplay.cpp b/Core/HLE/sceDisplay.cpp index e62bb722d9..5f06011f0d 100644 --- a/Core/HLE/sceDisplay.cpp +++ b/Core/HLE/sceDisplay.cpp @@ -663,8 +663,10 @@ void hleEnterVblank(u64 userdata, int cyclesLate) { // Sometimes users just think the sound emulation is broken. static bool hasNotifiedSlow = false; if (!g_Config.bHideSlowWarnings && !hasNotifiedSlow && IsRunningSlow()) { +#ifndef _DEBUG I18NCategory *err = GetI18NCategory("Error"); host->NotifyUserMessage(err->T("Running slow: try frameskip, sound is choppy when slow"), 6.0f, 0xFF3030FF); +#endif hasNotifiedSlow = true; }