sceKernelLoadModuleBuffer

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

Moderators: cheriff, TyRaNiD

Post Reply
johnmph
Posts: 119
Joined: Sat Jul 23, 2005 11:48 pm

sceKernelLoadModuleBuffer

Post by johnmph »

Hello, there is a small bug in sdk (pspmodulemgr_kernel.h) :

SceUID sceKernelLoadModuleBuffer(SceSize bufsize, void *buf, int flags, SceKernelLMOption *option);

should be :

SceUID sceKernelLoadModuleBuffer(void *buf, SceSize bufsize, int flags, SceKernelLMOption *option);

The first and second parameters must be swapped.
Post Reply