From 5bc2ccbe8ec2f584e15babae90f85c5bc983192b Mon Sep 17 00:00:00 2001 From: tildearrow Date: Thu, 29 Dec 2022 02:22:20 -0500 Subject: [PATCH] fix a tiny bug when saving SNES instruments --- src/engine/instrument.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/engine/instrument.cpp b/src/engine/instrument.cpp index d30e1fb9c..433e288fa 100644 --- a/src/engine/instrument.cpp +++ b/src/engine/instrument.cpp @@ -206,7 +206,8 @@ bool DivInstrumentSNES::operator==(const DivInstrumentSNES& other) { _C(a) && _C(d) && _C(s) && - _C(r) + _C(r) && + _C(d2) ); }