mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix missing return value in another function
This commit is contained in:
parent
294584c608
commit
cd6d4db7b8
1 changed files with 3 additions and 2 deletions
|
@ -417,7 +417,7 @@ bool System_MakeRequest(SystemRequestType type, int requestId, const std::string
|
|||
dispatch_async(dispatch_get_main_queue(), ^{
|
||||
[(AppDelegate *)[[UIApplication sharedApplication] delegate] restart:param1.c_str()];
|
||||
});
|
||||
break;
|
||||
return true;
|
||||
|
||||
case SystemRequestType::EXIT_APP:
|
||||
// NOTE: on iOS, this is considered a crash and not a valid way to exit.
|
||||
|
@ -508,8 +508,9 @@ bool System_MakeRequest(SystemRequestType type, int requestId, const std::string
|
|||
});
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
void System_Toast(std::string_view text) {}
|
||||
|
|
Loading…
Add table
Reference in a new issue