Fix overflow.

This commit is contained in:
Christian Speckner 2024-03-03 11:31:18 +01:00
parent 13d782b149
commit 92a7137d01
1 changed files with 1 additions and 1 deletions

View File

@ -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};