1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-02-18 16:30:29 +00:00

This might be more accurate? Probably not. Who knows?

This commit is contained in:
Thomas Harte 2016-02-20 00:13:43 -05:00
parent 518c134348
commit da361be3ee

View File

@ -533,7 +533,7 @@ inline void Machine::update_pixels_to_position(int x, int y)
if(_currentOutputLine == 8) if(_currentOutputLine == 8)
{ {
_currentOutputLine = 0; _currentOutputLine = 0;
_startLineAddress += ((_screen_mode > 3) ? 40 : 80) * 8 - 8; _startLineAddress = _currentScreenAddress - 7;
} }
} }
} }