From ba2513b511d7c7a899310bc499c650375476f7e1 Mon Sep 17 00:00:00 2001 From: negativeExponent Date: Fri, 7 Oct 2022 13:23:02 +0800 Subject: [PATCH] Fix missing break statements --- src/gb/GB.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gb/GB.cpp b/src/gb/GB.cpp index e7b1a9f0..2445a7b8 100644 --- a/src/gb/GB.cpp +++ b/src/gb/GB.cpp @@ -1553,7 +1553,7 @@ void gbWriteMemory(uint16_t address, uint8_t value) } inBios = false; } - } + } break; // HDMA1 case 0x51: { @@ -1747,7 +1747,7 @@ void gbWriteMemory(uint16_t address, uint8_t value) gbMemory[0xff70] = register_SVBK = value; return; } - } + } break; case 0x75: { gbMemory[0xff75] = 0x8f | value;