From 26b35426c138001ff98523f07a7f5dec7fecfe08 Mon Sep 17 00:00:00 2001 From: Sour Date: Fri, 1 Nov 2024 20:32:30 +0900 Subject: [PATCH] Debugger: NES - Fixed tile/attribute write highlights not working --- Core/NES/Debugger/NesPpuTools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/NES/Debugger/NesPpuTools.cpp b/Core/NES/Debugger/NesPpuTools.cpp index da2ab9058..f69c55997 100644 --- a/Core/NES/Debugger/NesPpuTools.cpp +++ b/Core/NES/Debugger/NesPpuTools.cpp @@ -234,7 +234,7 @@ void NesPpuTools::ApplyHighlights(GetTilemapOptions options, uint8_t nametableIn bool attrHighlighted = isHighlighted(attributeAddress, options.AttributeHighlightMode); if(!tileHighlighted && !attrHighlighted) { - break; + continue; } for(uint8_t y = 0; y < 8; y++) {