mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
minor adjustments
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@305 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
7d0143a2de
commit
ff6b7429bb
4 changed files with 15 additions and 3 deletions
|
@ -44,7 +44,12 @@ int main()
|
|||
thid = sceKernelCreateThread("pico_main", (SceKernelThreadEntry) pico_main, 32, 0x2000, PSP_THREAD_ATTR_USER, NULL);
|
||||
if (thid >= 0)
|
||||
sceKernelStartThread(thid, 0, 0);
|
||||
#ifndef GCOV
|
||||
sceKernelExitDeleteThread(0);
|
||||
#else
|
||||
while (engineState != PGS_Quit)
|
||||
sceKernelDelayThread(1024 * 1024);
|
||||
#endif
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue