minor adjustments

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@305 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2007-11-25 16:45:26 +00:00
parent 7d0143a2de
commit ff6b7429bb
4 changed files with 15 additions and 3 deletions

View file

@ -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;
}