mirror of
https://github.com/libretro/bsnes-libretro-cplusplus98.git
synced 2025-04-12 15:13:34 +00:00
10 lines
150 B
C++
10 lines
150 B
C++
#ifdef SERIAL_CPP
|
|
|
|
void Serial::serialize(serializer &s) {
|
|
Processor::serialize(s);
|
|
s.integer((bool&)data1);
|
|
s.integer((bool&)data2);
|
|
}
|
|
|
|
#endif
|