I'm trying to use the sio prx from MapThis! to use the serial port in 3.xx.
When I modified the code, it crashed and gave me an error.
Error - 8002013C .. Google search suggests it means "Library not found".
My question is, how does this know where to load the prx from?
I tried "./sioprx.prx" but got the same result, but the question still stands..
Does it look in the current working directory?
Cheers, Art.void loadSioPrx() {
SceUID mod = pspSdkLoadStartModule("sioprx.prx", PSP_MEMORY_PARTITION_KERNEL);
if (mod < 0) {
pspDebugScreenPrintf(" Error 0x%08X loading/starting pspsio.prx.\n", mod);
sceKernelDelayThread(2000000);
sceKernelExitGame();
}
}