Will not load homebrew

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
angelo
Posts: 168
Joined: Wed Aug 29, 2007 9:34 pm

Will not load homebrew

Post by angelo »

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: Select all

				//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);
		}
Post Reply