mirror of https://github.com/bsnes-emu/bsnes.git
10 lines
164 B
C++
10 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
|