angelo
Joined: 29 Aug 2007 Posts: 168
|
Posted: Wed May 28, 2008 11:46 pm Post subject: Will not load homebrew |
|
|
I want to try and add something new in piKey. I've done my research but nothing...
CTRL + (1-4) will load homebrew in ms0:/SEPlugins/piKey/Application/App(1-4)
It's trying to load them from the XMB but just displays a message.
The PSP doesn't freeze but just continues as normal.
What could be wrong?
| Code: | //Applcation Launcher
//Application 1
if (isVshMode())
if (isKeyPressed(KEY_1) && ctrl){
displayStatusText("Loading Application 1...");
sceKernelDelayThread(3 * 1000 * 1000);
sceKernelLoadExec("ms0:/SEPlugins/piKey/Applications/App1/EBOOT.PBP", NULL);
}
//Application 2
if (isVshMode())
if (isKeyPressed(KEY_2) && ctrl){
displayStatusText("Loading Application 2...");
sceKernelDelayThread(3 * 1000 * 1000);
sceKernelLoadExec("ms0:/SEPlugins/piKey/Applications/App2/EBOOT.PBP", NULL);
}
//Application 3
if (isVshMode())
if (isKeyPressed(KEY_3) && ctrl){
displayStatusText("Loading Application 3...");
sceKernelDelayThread(3 * 1000 * 1000);
sceKernelLoadExec("ms0:/SEPlugins/piKey/Applications/App3/EBOOT.PBP", NULL);
}
//Application 4
if (isVshMode())
if (isKeyPressed(KEY_4) && ctrl){
displayStatusText("Loading Application 4...");
sceKernelDelayThread(3 * 1000 * 1000);
SceUID mod = sceKernelLoadExec("ms0:/SEPlugins/piKey/Applications/App4/EBOOT.PBP", NULL);
} |
|
|