Hi Guys,
After a little help with file IO .. writing/reading a file from two different buffers.
Yes I could copy them to a single buffer, and do it the normal way if there
were enough RAM, but there isn't.
I thought the above would work, but it doesn't seem to.. any ideas? :DCode:int f;
f = sceIoOpen("./folder/file.txt", PSP_O_RDONLY, 0777);
sceIoRead(f,buffer_a,10000);
sceIoRead(f,buffer_b,20000);
sceIoClose(f);
-= Double Post =-
forget it, that IS the right way,
I dunno what I was doing wrong before.
