From 9505a14e9ba7ee33259393e80dbebaddcdf74422 Mon Sep 17 00:00:00 2001 From: Toni Wilen Date: Sun, 5 Jan 2025 13:08:50 +0200 Subject: [PATCH] Fix AGA autoscale --- drawing.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/drawing.cpp b/drawing.cpp index 558ae7e6..d90199cb 100644 --- a/drawing.cpp +++ b/drawing.cpp @@ -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); -- 2.47.3