mirror of
https://github.com/libretro/bsnes-libretro-cplusplus98.git
synced 2025-04-15 00:20:13 +00:00
10 lines
128 B
C++
10 lines
128 B
C++
#ifdef SRTC_CPP
|
|
|
|
void SRTC::serialize(serializer &s) {
|
|
s.array(rtc);
|
|
s.integer(rtc_mode);
|
|
s.integer(rtc_index);
|
|
}
|
|
|
|
#endif
|