]> git.unchartedbackwaters.co.uk Git - francis/winuae.git/commitdiff
Fix AGA autoscale
authorToni Wilen <twilen@winuae.net>
Sun, 5 Jan 2025 11:08:50 +0000 (13:08 +0200)
committerToni Wilen <twilen@winuae.net>
Sun, 5 Jan 2025 11:08:50 +0000 (13:08 +0200)
drawing.cpp

index 558ae7e639958e98d0878a3fa43d622641070012..d90199cb29b848f27a45eb50286e0752db1309f8 100644 (file)
@@ -631,13 +631,8 @@ int get_custom_limits (int *pw, int *ph, int *pdx, int *pdy, int *prealh)
        }
 
        int diwfirst, diwlast;
-       if (aga_mode) {
-               diwfirst = diwfirstword_total;
-               diwlast = diwlastword_total;
-       } else {
-               diwfirst = diwfirstword_total << 2;
-               diwlast = diwlastword_total << 2;
-       }
+       diwfirst = diwfirstword_total << 2;
+       diwlast = diwlastword_total << 2;
 
        int ddffirst = ddffirstword_total << (RES_MAX + 1);
        int ddflast = ddflastword_total << (RES_MAX + 1);