From 37774e08b8d6d17dee701dcd09f0199a67c7a4a1 Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Fri, 3 Mar 2017 22:04:30 -0330 Subject: [PATCH] Re-sync load() and save() methods in TIA class. --- src/emucore/tia/TIA.cxx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/emucore/tia/TIA.cxx b/src/emucore/tia/TIA.cxx index c2e3a503a..da527dc9b 100644 --- a/src/emucore/tia/TIA.cxx +++ b/src/emucore/tia/TIA.cxx @@ -253,6 +253,9 @@ bool TIA::load(Serializer& in) // Load latched input ports if(!myInput0.load(in)) return false; if(!myInput1.load(in)) return false; + + // Load the sound sample stuff ... + if(!mySound.load(in)) return false; } catch(...) {