X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=psp%2Fpsp.c;h=05af63d6126039bf6d17e63b53d270f2cfb8d7fb;hb=a6df06b7633a061862258ec47fa0f6b0efcbe26f;hp=a21507f0265e58b08e1ecee6e4ef983f5bf6704d;hpb=16e89bed918ec39b1e43956b903f7986af86a6b2;p=libpicofe.git diff --git a/psp/psp.c b/psp/psp.c index a21507f..05af63d 100644 --- a/psp/psp.c +++ b/psp/psp.c @@ -33,7 +33,7 @@ static int callback_thread(SceSize args, void *argp) { int cbid; - lprintf("callback_thread started with id %i, priority %i\n", + lprintf("callback_thread started with id %08x, priority %i\n", sceKernelGetThreadId(), sceKernelGetThreadCurrentPriority()); cbid = sceKernelCreateCallback("Exit Callback", exit_callback, NULL); @@ -49,7 +49,7 @@ void psp_init(void) SceUID thid; lprintf("running in %08x kernel\n", sceKernelDevkitVersion()), - lprintf("entered psp_init, threadId %i, priority %i\n", sceKernelGetThreadId(), + lprintf("entered psp_init, threadId %08x, priority %i\n", sceKernelGetThreadId(), sceKernelGetThreadCurrentPriority()); thid = sceKernelCreateThread("update_thread", callback_thread, 0x11, 0xFA0, 0, 0);