mirror of
https://github.com/Michael-Prince-Sharpe/bsnes-classic.git
synced 2025-04-02 10:21:42 -04:00
12 lines
256 B
C++
12 lines
256 B
C++
#ifdef PPU_CPP
|
|
|
|
void PPUcounter::serialize(serializer &s) {
|
|
s.integer(status.hcounter);
|
|
s.integer(status.vcounter);
|
|
s.integer(status.lineclocks);
|
|
s.integer(status.prev_lineclocks);
|
|
s.array(status.fieldlines);
|
|
s.integer(status.field);
|
|
}
|
|
|
|
#endif
|