bsnes/sfc/cartridge/serialization.cpp
Tim Allen 1b0b54a690 Update to v094r38 release.
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!
2015-08-04 19:01:59 +10:00

7 lines
118 B
C++

#ifdef CARTRIDGE_CPP
auto Cartridge::serialize(serializer& s) -> void {
s.array(ram.data(), ram.size());
}
#endif