mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
9 lines
150 B
C++
9 lines
150 B
C++
#ifdef SERIAL_CPP
|
|
|
|
void Serial::serialize(serializer &s) {
|
|
Processor::serialize(s);
|
|
s.integer((bool&)data1);
|
|
s.integer((bool&)data2);
|
|
}
|
|
|
|
#endif
|