mirror of https://github.com/stella-emu/stella.git
Fix overflow.
This commit is contained in:
parent
13d782b149
commit
92a7137d01
|
@ -300,7 +300,7 @@ class CartDebug : public DebuggerSystem
|
|||
struct ReservedEquates {
|
||||
std::array<bool, 16> TIARead{false};
|
||||
std::array<bool, 64> TIAWrite{false};
|
||||
std::array<bool, 32> IOReadWrite{false};
|
||||
std::array<bool, 128> IOReadWrite{false};
|
||||
std::array<bool, 128> ZPRAM{false};
|
||||
AddrToLabel Label{};
|
||||
bool breakFound{false};
|
||||
|
|
Loading…
Reference in New Issue