mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Don't warn about slowness in debug builds
This commit is contained in:
parent
e37decc9a8
commit
e78d85f386
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue