Skip to content

Commit ca2c70b

Browse files
committed
Add noise channel to save state serialization
1 parent ec37cac commit ca2c70b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ares/fc/apu/serialization.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ auto APU::serialize(serializer& s) -> void {
33
s(pulse1);
44
s(pulse2);
55
s(triangle);
6+
s(noise);
67
s(dmc);
78
s(frame);
89
}

ares/fc/system/serialization.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
static const string SerializerVersion = "v150";
1+
static const string SerializerVersion = "v151";
22

33
auto System::serialize(bool synchronize) -> serializer {
44
if(synchronize) scheduler.enter(Scheduler::Mode::Synchronize);

0 commit comments

Comments
 (0)