I'm running 3.52M33-4.
Code: Select all
void loadEBOOT(char *target)
{
struct SceKernelLoadExecVSHParam param;
memset(¶m, 0, sizeof(param));
param.key = "game";
param.size = sizeof(param);
param.args = strlen(target)+1;
param.argp = target;
sceKernelLoadExecVSHMs2(target, ¶m);
}
I'm also including the header file psploadexec_kernel.h
Any idea's please.
Other then this piece of code there is nothing wrong with my app.