mirror of https://github.com/bsnes-emu/bsnes.git
4 lines
107 B
C++
4 lines
107 B
C++
|
auto BSMemory::serialize(serializer& s) -> void {
|
||
|
if(!readonly) s.array(memory.data(), memory.size());
|
||
|
}
|