fixed some warnings in VS

This commit is contained in:
thrust26 2023-06-14 09:58:31 +02:00
parent cd59144999
commit 56b555df35
1 changed files with 4 additions and 4 deletions

View File

@ -298,10 +298,10 @@ class CartDebug : public DebuggerSystem
// Information on equates used in the disassembly // Information on equates used in the disassembly
struct ReservedEquates { struct ReservedEquates {
std::array<bool, 16> TIARead; std::array<bool, 16> TIARead{false};
std::array<bool, 64> TIAWrite; std::array<bool, 64> TIAWrite{false};
std::array<bool, 32> IOReadWrite; std::array<bool, 32> IOReadWrite{false};
std::array<bool, 128> ZPRAM; std::array<bool, 128> ZPRAM{false};
AddrToLabel Label{}; AddrToLabel Label{};
bool breakFound{false}; bool breakFound{false};
}; };