SPITFIR3
Joined: 21 Oct 2007 Posts: 16
|
Posted: Mon Nov 12, 2007 7:05 am Post subject: SceKernelLoadExecVSHParam problem |
|
|
Hi, I have made an app, which loads ok, but if I insert the code below I get the game cannot be started 800200D9 error.
I'm running 3.52M33-4.
| Code: |
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);
} |
It only happens when this code is placed in my project though.
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. |
|