mirror of https://github.com/stella-emu/stella.git
Fix minor compiler warning, and bump version number for state file.
This commit is contained in:
parent
10dc5d6d8b
commit
dd842cce30
|
@ -18,7 +18,7 @@
|
|||
#ifndef STATE_MANAGER_HXX
|
||||
#define STATE_MANAGER_HXX
|
||||
|
||||
#define STATE_HEADER "06050300state"
|
||||
#define STATE_HEADER "06050301state"
|
||||
|
||||
class OSystem;
|
||||
class RewindManager;
|
||||
|
|
|
@ -311,7 +311,9 @@ class Thumbulator
|
|||
uInt32 _pipeIdx{0};
|
||||
CycleType _prefetchCycleType[3]{CycleType::S};
|
||||
CycleType _lastCycleType[3]{CycleType::S};
|
||||
#if 0 // unused for now
|
||||
AccessType _prefetchAccessType[3]{AccessType::data};
|
||||
#endif
|
||||
#ifdef EMULATE_PIPELINE
|
||||
uInt32 _fetchPipeline{0}; // reserve fetch cycles resulting from pipelining (execution stage)
|
||||
uInt32 _memory0Pipeline{0}, _memory1Pipeline{0};
|
||||
|
|
Loading…
Reference in New Issue