Can anyone help me fix my code so it dont popup this error code at the start of the eboot?
I asked this awhile back, but now i cant find away to fix it.
http://www.sendspace.com/file/8k1nff
This is old, but is good to me. I'm not sure, but I think its in the struct under io.h . Let me know
thanks
800200D9
O.o
just post the code here, use the code tags when you do.
:)
:)
-
- Posts: 388
- Joined: Tue Aug 12, 2008 12:46 am
io.h:
io.c:
You are trying to allocate ~320mb on a PSP. Make those arrays smaller.
Code: Select all
struct files {
char *signature;
char *name[16*1024*1024];
char *block[16*1024*1024];
char *hash[16*1024*1024];
int size[16*1024*1024];
int len[16*1024*1024];
int pos;
};
Code: Select all
#include "io.h"
struct files ctx;
(+[__]%)
-
- Posts: 388
- Joined: Tue Aug 12, 2008 12:46 am