mirror of https://github.com/stella-emu/stella.git
Bump state version for KidVid; clean up some typos.
This commit is contained in:
parent
0f09b945ce
commit
01e8d29190
|
@ -18,7 +18,7 @@
|
|||
#ifndef STATE_MANAGER_HXX
|
||||
#define STATE_MANAGER_HXX
|
||||
|
||||
#define STATE_HEADER "06070000state"
|
||||
#define STATE_HEADER "06070001state"
|
||||
|
||||
class OSystem;
|
||||
class RewindManager;
|
||||
|
|
|
@ -175,7 +175,7 @@ bool KidVid::save(Serializer& out) const
|
|||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||
bool KidVid::load(Serializer& in)
|
||||
{
|
||||
// Save WAV player state
|
||||
// Load WAV player state
|
||||
myTape = in.getInt();
|
||||
myFilesFound = in.getBool();
|
||||
mySampleFile = in.getString();
|
||||
|
@ -184,7 +184,7 @@ bool KidVid::load(Serializer& in)
|
|||
mySongPlaying = in.getBool();
|
||||
mySongPointer = in.getInt();
|
||||
mySongLength = in.getInt();
|
||||
// Save tape input simulation state
|
||||
// Load tape input simulation state
|
||||
myIdx = in.getInt();
|
||||
myBlockIdx = in.getInt();
|
||||
myBlock = in.getInt();
|
||||
|
|
|
@ -108,7 +108,7 @@ class KidVid : public Controller
|
|||
;
|
||||
|
||||
// Whether the KidVid device is enabled (only for games that it
|
||||
// supports, and if it's plugged into the right port
|
||||
// supports, and if it's plugged into the right port)
|
||||
bool myEnabled{false};
|
||||
|
||||
string myBaseDir;
|
||||
|
|
Loading…
Reference in New Issue