mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-04-02 10:42:14 -04:00
byuu says: I'll post more detailed changes later, but basically: - fixed Baldur's Gate bug - guess if no flash ROM ID present (fixes Magical Vacation, many many others) - nall cleanups - sfc/cartridge major cleanups - bsxcartridge/"bsx" renamed to mcc/"mcc" after the logic chip it uses (consistency with SGB/ICD2) - ... and more!
7 lines
118 B
C++
7 lines
118 B
C++
#ifdef CARTRIDGE_CPP
|
|
|
|
auto Cartridge::serialize(serializer& s) -> void {
|
|
s.array(ram.data(), ram.size());
|
|
}
|
|
|
|
#endif
|