From da361be3eec146c37cc8a17542e2a3a07f1be755 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 20 Feb 2016 00:13:43 -0500 Subject: [PATCH] This might be more accurate? Probably not. Who knows? --- Machines/Electron/Electron.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Machines/Electron/Electron.cpp b/Machines/Electron/Electron.cpp index b46ef612a..dded651cc 100644 --- a/Machines/Electron/Electron.cpp +++ b/Machines/Electron/Electron.cpp @@ -533,7 +533,7 @@ inline void Machine::update_pixels_to_position(int x, int y) if(_currentOutputLine == 8) { _currentOutputLine = 0; - _startLineAddress += ((_screen_mode > 3) ? 40 : 80) * 8 - 8; + _startLineAddress = _currentScreenAddress - 7; } } }