From d5a724fdb432e89afe174008305aaedcd84e6268 Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Wed, 4 Oct 2017 00:34:11 +0100 Subject: [PATCH] Whoops: missed variable name change. Signed-off-by: Adrian Conlon --- LR35902/src/Display.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LR35902/src/Display.cpp b/LR35902/src/Display.cpp index dfab316..bf3e5bf 100644 --- a/LR35902/src/Display.cpp +++ b/LR35902/src/Display.cpp @@ -153,7 +153,7 @@ void EightBit::GameBoy::Display::renderTile( if (y >= RasterHeight) continue; - if (y != m_currentScanLine) + if (y != m_scanLine) continue; const auto rowDefinition = definition.get(cy);