mirror of https://github.com/stella-emu/stella.git
fixed some warnings in VS
This commit is contained in:
parent
cd59144999
commit
56b555df35
|
@ -298,10 +298,10 @@ class CartDebug : public DebuggerSystem
|
|||
|
||||
// Information on equates used in the disassembly
|
||||
struct ReservedEquates {
|
||||
std::array<bool, 16> TIARead;
|
||||
std::array<bool, 64> TIAWrite;
|
||||
std::array<bool, 32> IOReadWrite;
|
||||
std::array<bool, 128> ZPRAM;
|
||||
std::array<bool, 16> TIARead{false};
|
||||
std::array<bool, 64> TIAWrite{false};
|
||||
std::array<bool, 32> IOReadWrite{false};
|
||||
std::array<bool, 128> ZPRAM{false};
|
||||
AddrToLabel Label{};
|
||||
bool breakFound{false};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue