Don't erase args in sceKernelLoadExec().

Suspect this will fix Kamen Rider Climax Heroes OOO.
This commit is contained in:
Unknown W. Brackets 2013-11-02 15:47:43 -07:00
parent ed1204a10f
commit c2b2b366eb

View File

@ -1279,6 +1279,8 @@ bool __KernelLoadExec(const char *filename, u32 paramPtr, std::string *error_str
if (param_argp) delete[] param_argp;
if (param_key) delete[] param_key;
hleSkipDeadbeef();
return true;
}