Search found 1 match

by fcorbier
Sat Jun 25, 2005 4:46 am
Forum: PSP Development
Topic: my own malloc for psp
Replies: 6
Views: 3635

Hey Yoshihiro, I'm using your malloc in my PSPRick project. It works fine but I made a small modification for it. I changed: numbytes = numbytes + sizeof(struct mem_control_block); to: numbytes = ((numbytes+3)&~0x3) + sizeof(struct mem_cont...