|
link to this page:
http://pastebin.antiyes.com/pastebin/index275.html
download this file: click here
|
description/question: here is what i have
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
|
int fd;
fd=sceIoOpen("ms0:/seplugins/nitePR/nitePR.txt", PSP_O_RDONLY, 0777);
if(fd > 0){
unsigned int fileSize=sceIoLseek(fd, 0, SEEK_END); sceIoLseek(fd, 0, SEEK_SET);
unsigned int fileOffset=0;
unsigned char commentMode=0;
unsigned char nameMode=0;
while(fileOffset < fileSize){
sceKernelDelayThread(1500);
sceIoRead(fd, &buffer[0], 1);
fileOffset=sceIoLseek(fd, 0, SEEK_CUR);
}
sceIoClose(fd);
}
//Write out the RAM
counter=0;
while(counter < 10){
//Apply the row color
if(counter == decodeD){
pspDebugScreenSetTextColor(textcolor01);
}
else{
pspDebugScreenSetTextColor(textcolor02);
}
sprintf(fd, buffer);
//Goto the next cheat down under
pspDebugScreenPuts("\n");
counter++;
}
|
|
|
|
|