mirror of
https://github.com/86Box/86Box.git
synced 2025-01-23 01:31:51 -05:00
Fix fine scroll wobbling in EGA when calling ega_recalctimings
Closes: GH-4072
This commit is contained in:
parent
9844cbc245
commit
e5000f7419
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ ega_recalctimings(ega_t *ega)
|
|||
overscan_x <<= 1;
|
||||
|
||||
ega->y_add = (overscan_y >> 1);
|
||||
ega->x_add = (overscan_x >> 1);
|
||||
ega->x_add = (overscan_x >> 1) - ega->scrollcache;
|
||||
|
||||
if (ega->vres)
|
||||
ega->y_add >>= 1;
|
||||
|
|
Loading…
Reference in a new issue