mirror of https://github.com/stella-emu/stella.git
Re-sync load() and save() methods in TIA class.
This commit is contained in:
parent
b5b058c615
commit
37774e08b8
|
@ -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(...)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue