From 07cf16aa276d4e83ec89dbeb83bff891e3e033bd Mon Sep 17 00:00:00 2001 From: thrust26 Date: Wed, 14 Jun 2023 09:58:31 +0200 Subject: [PATCH] fixed some warnings in VS --- src/debugger/CartDebug.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/debugger/CartDebug.hxx b/src/debugger/CartDebug.hxx index dd3a800bb..1a34524be 100644 --- a/src/debugger/CartDebug.hxx +++ b/src/debugger/CartDebug.hxx @@ -298,10 +298,10 @@ class CartDebug : public DebuggerSystem // Information on equates used in the disassembly struct ReservedEquates { - std::array TIARead; - std::array TIAWrite; - std::array IOReadWrite; - std::array ZPRAM; + std::array TIARead{false}; + std::array TIAWrite{false}; + std::array IOReadWrite{false}; + std::array ZPRAM{false}; AddrToLabel Label{}; bool breakFound{false}; };