mirror of https://github.com/stella-emu/stella.git
Fix missing initializations.
This commit is contained in:
parent
1dd364bc8a
commit
b1e297153b
|
@ -69,19 +69,19 @@ class DevSettingsHandler
|
|||
std::array<bool, numSets> myThumbException{};
|
||||
std::array<int, numSets> myArmSpeed{};
|
||||
// TIA sets
|
||||
std::array<string, numSets> myTIAType;
|
||||
std::array<bool, numSets> myPlInvPhase;
|
||||
std::array<bool, numSets> myMsInvPhase;
|
||||
std::array<bool, numSets> myBlInvPhase;
|
||||
std::array<bool, numSets> myPlLateHMove;
|
||||
std::array<bool, numSets> myMsLateHMove;
|
||||
std::array<bool, numSets> myBlLateHMove;
|
||||
std::array<bool, numSets> myPFBits;
|
||||
std::array<bool, numSets> myPFColor;
|
||||
std::array<bool, numSets> myPFScore;
|
||||
std::array<bool, numSets> myBKColor;
|
||||
std::array<bool, numSets> myPlSwap;
|
||||
std::array<bool, numSets> myBlSwap;
|
||||
std::array<string, numSets> myTIAType{};
|
||||
std::array<bool, numSets> myPlInvPhase{};
|
||||
std::array<bool, numSets> myMsInvPhase{};
|
||||
std::array<bool, numSets> myBlInvPhase{};
|
||||
std::array<bool, numSets> myPlLateHMove{};
|
||||
std::array<bool, numSets> myMsLateHMove{};
|
||||
std::array<bool, numSets> myBlLateHMove{};
|
||||
std::array<bool, numSets> myPFBits{};
|
||||
std::array<bool, numSets> myPFColor{};
|
||||
std::array<bool, numSets> myPFScore{};
|
||||
std::array<bool, numSets> myBKColor{};
|
||||
std::array<bool, numSets> myPlSwap{};
|
||||
std::array<bool, numSets> myBlSwap{};
|
||||
// States sets
|
||||
std::array<bool, numSets> myTimeMachine{};
|
||||
std::array<int, numSets> myStateSize{};
|
||||
|
|
Loading…
Reference in New Issue