Next Generation Emulation banner
1 - 10 of 10 Posts

· Registered
Joined
·
3 Posts
Discussion Starter · #6 ·
Valcrist said:
gee how did I miss this thread o.0

Check other roms to see if they save, also you might want to go to your disk utility and validate and fix persmission on the whole disk.
none of my other roms save either.. are the games suppose to be in a certain folder or something?..
 

· Registered
Joined
·
8 Posts
IIRC, this is a known issue with Mac VBA. Since AFAIK the code for battery saves are in the core, it's probably some nonportable code therein. The only thing I can tell at this point is that it may be a problem with the code in Util.cpp (since all roads practically lead there) - it is most likely an endian issue (a similar issue prevented CB decryption from working on the Mac) from casting something something with inherent byte sex to void*, ie. where every byte is sexually ambiguous. I suspect that any build on VBA on a big-endian system (eg. vba on solaris-sparc) will have similar issues.
 

· Premium Member
Joined
·
483 Posts
No, the saving issue is not an endian problem. There must be something else wrong in the system. All it tries to do is write to a file in the specified battery directory. I don't know at what state flea left the Mac port, so I have no idea how you even configure it.
 

· Registered
Joined
·
8 Posts
Ah I see. I was looking at the wrong sources (Flash.cpp and EEprom.cpp). The problem stems from the file pointer from calling std::fopen() in CPUWriteBatteryFile() in GBA.cpp returning null.

Still, I have found that utilGzWriteInt() is not endian-safe in any case...
 

· Premium Member
Joined
·
483 Posts
Endian-safe is different from the problem writing to the file. I never worried about producing the correct endian-safe files, but the saves I think are endian safe, maybe with the exception of the compression on top of them, because aside from that, they are just bytes in the order the game writes. It is up to the game and emulator to read it correctly.
 
1 - 10 of 10 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top