Re-sync load() and save() methods in TIA class.

This commit is contained in:
Stephen Anthony 2017-03-03 22:04:30 -03:30
parent b5b058c615
commit 37774e08b8
1 changed files with 3 additions and 0 deletions

View File

@ -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(...)
{