mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
9 lines
152 B
C++
Executable file
9 lines
152 B
C++
Executable file
#ifdef CARTRIDGE_CPP
|
|
|
|
void Cartridge::serialize(serializer &s) {
|
|
for(auto &ram : nvram) {
|
|
if(ram.size) s.array(ram.data, ram.size);
|
|
}
|
|
}
|
|
|
|
#endif
|