mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Buildfix
This commit is contained in:
parent
be63ce3a4a
commit
7139dd326c
1 changed files with 2 additions and 2 deletions
|
@ -545,9 +545,9 @@ TOGGLE_METHOD(FullScreen, g_Config.bFullScreen, System_MakeRequest(SystemRequest
|
|||
|
||||
-(void)toggleShowDebugStats: (NSMenuItem *)item { \
|
||||
if ((DebugOverlay)g_Config.iDebugOverlay == DebugOverlay::DEBUG_STATS) {
|
||||
g_Config.iDebugOverlay = DebugOverlay::OFF;
|
||||
g_Config.iDebugOverlay = (int)DebugOverlay::OFF;
|
||||
} else {
|
||||
g_Config.iDebugOverlay = DebugOverlay::DEBUG_STATS;
|
||||
g_Config.iDebugOverlay = (int)DebugOverlay::DEBUG_STATS;
|
||||
}
|
||||
System_PostUIMessage("clear jit", "");
|
||||
item.state = [self controlStateForBool: (DebugOverlay)g_Config.iDebugOverlay == DebugOverlay::DEBUG_STATS]; \
|
||||
|
|
Loading…
Add table
Reference in a new issue