Small changes

This commit is contained in:
Nekotekina 2014-02-04 00:23:05 +04:00
parent 311486ed79
commit aeca523a34
8 changed files with 18 additions and 14 deletions

View file

@ -40,11 +40,7 @@ int sys_process_getppid()
int sys_process_exit(int errorcode)
{
sc_p.Warning("sys_process_exit(%d)", errorcode);
#ifdef _DEBUG
Emu.Pause();
#else
Emu.Stop();
#endif
Emu.Pause(); // Emu.Stop() does crash
return CELL_OK;
}