Closed GoogleCodeExporter closed 8 years ago
To be more specific : I used d2x v7 final, IOS 249, base 56.
Original comment by yps...@gmail.com
on 11 Dec 2011 at 9:43
OK I found the problem.
This game has quite stupid and apparently harmless bug made by developers.
It opens the savefile twice in write mode. See the log:
FS_CreateFile("/title/00010000/52394a50/data/proj9.dat", 03, 00, 00, 00)
FS_CreateFile: ret = 0
FS_Open("/title/00010000/52394a50/data/proj9.dat", 3)
FS_Open: ret = 1
FS_Open("/title/00010000/52394a50/data/proj9.dat", 3)
FS_Open: ret = 2
FS_Write(2, 0x0115d3a0, 1048576)
FS_Write: ret = 1048576
FS_Close(2)
FS_Close: ret = 0
FS_Close(1)
FS_Close: ret = 0
Note that the file is open twice but it is writtent to by fd 2 only. I believe
it works on real nand just because the 2nd close, i.e. the one on fd 1, has
nothing to flush. Otherwise real nand corruption would be possible.
Anyways after disabling file sharing control in the fat library this game has
started working on emu nand too.
Now a bit of code clean up then I'll release a new beta with this fix.
Original comment by dav...@yahoo.it
on 3 Jan 2012 at 10:34
Great news! Thanks a lot. (I know my comment is not really useful, but I wanted
to say thanks).
Original comment by yps...@gmail.com
on 4 Jan 2012 at 9:59
Fix released with r41.
Original comment by dav...@yahoo.it
on 7 Jan 2012 at 2:05
Original issue reported on code.google.com by
yps...@gmail.com
on 11 Dec 2011 at 9:30