bsnes-mt/bsnes/sfc/ppu/counter/_serialization.cpp

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);
}