mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Don't msgbox on game exit (homebrew can legitimately do this)
This commit is contained in:
parent
53b5d331b4
commit
4ed97f9c60
1 changed files with 1 additions and 4 deletions
|
@ -287,8 +287,6 @@ bool __KernelIsRunning() {
|
|||
void sceKernelExitGame()
|
||||
{
|
||||
INFO_LOG(SCEKERNEL, "sceKernelExitGame");
|
||||
if (!PSP_CoreParameter().headLess)
|
||||
PanicAlert("Game exited");
|
||||
__KernelSwitchOffThread("game exited");
|
||||
Core_Stop();
|
||||
}
|
||||
|
@ -296,8 +294,6 @@ void sceKernelExitGame()
|
|||
void sceKernelExitGameWithStatus()
|
||||
{
|
||||
INFO_LOG(SCEKERNEL, "sceKernelExitGameWithStatus");
|
||||
if (!PSP_CoreParameter().headLess)
|
||||
PanicAlert("Game exited (with status)");
|
||||
__KernelSwitchOffThread("game exited");
|
||||
Core_Stop();
|
||||
}
|
||||
|
@ -318,6 +314,7 @@ u32 sceKernelRegisterKprintfHandler()
|
|||
ERROR_LOG(SCEKERNEL, "UNIMPL sceKernelRegisterKprintfHandler()");
|
||||
return 0;
|
||||
}
|
||||
|
||||
void sceKernelRegisterDefaultExceptionHandler()
|
||||
{
|
||||
ERROR_LOG(SCEKERNEL, "UNIMPL sceKernelRegisterDefaultExceptionHandler()");
|
||||
|
|
Loading…
Add table
Reference in a new issue