Fix inverted if

This commit is contained in:
Cameron Gutman 2014-10-21 16:23:03 -04:00
parent f0b6602b99
commit 0ccf046c69

View File

@ -46,7 +46,7 @@
[_callbacks launchFailed]; [_callbacks launchFailed];
return; return;
} }
else if ([currentGame isEqualToString:@"0"]) { else if (![currentGame isEqualToString:@"0"]) {
// App already running, resume it // App already running, resume it
if (![self resumeApp:hMan]) { if (![self resumeApp:hMan]) {
[_callbacks launchFailed]; [_callbacks launchFailed];