bsnes-hd/bsnes/sfc/ppu/counter/serialization.cpp
2020-01-12 22:12:37 +01:00

11 lines
273 B
C++

auto PPUcounter::serialize(serializer& s) -> void {
s.integer(time.interlace);
s.integer(time.field);
s.integer(time.vperiod);
s.integer(time.hperiod);
s.integer(time.vcounter);
s.integer(time.hcounter);
s.integer(last.vperiod);
s.integer(last.hperiod);
}