mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
9 lines
164 B
C++
9 lines
164 B
C++
#ifdef SUPERGAMEBOY_CPP
|
|
|
|
void SuperGameBoy::serialize(serializer &s) {
|
|
Processor::serialize(s);
|
|
s.integer(row);
|
|
if(sgb_serialize) sgb_serialize(s);
|
|
}
|
|
|
|
#endif
|