From 63f79659208c76ce51b370669f6cb0178c415b09 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Mon, 28 May 2007 17:07:19 +0000 Subject: (svn r9963) -Fix (r9962): 'smooth_scroll' patch setting was ignored (always on) in some places. --- src/viewport.cpp | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/viewport.cpp b/src/viewport.cpp index a06547051..1fc915ec5 100644 --- a/src/viewport.cpp +++ b/src/viewport.cpp @@ -1397,10 +1397,15 @@ void UpdateViewportPosition(Window *w) int delta_y = dest_y - y; if (delta_x != 0 || delta_y != 0) { - int max_scroll = ScaleByMapSize1D(512); - /* Not at our desired positon yet... */ - x += clamp(delta_x / 8, -max_scroll, max_scroll); - y += clamp(delta_y / 8, -max_scroll, max_scroll); + if (_patches.smooth_scroll) { + int max_scroll = ScaleByMapSize1D(512); + /* Not at our desired positon yet... */ + x += clamp(delta_x / 8, -max_scroll, max_scroll); + y += clamp(delta_y / 8, -max_scroll, max_scroll); + } else { + x = dest_x; + y = dest_y; + } } /* Convert viewport coordinates to map coordinates @@ -1868,7 +1873,7 @@ bool ScrollWindowTo(int x , int y, Window *w, bool instant) if (WP(w, vp_d).dest_scrollpos_x == pt.x && WP(w, vp_d).dest_scrollpos_y == pt.y) return false; - if (!_patches.smooth_scroll || instant) { + if (instant) { WP(w, vp_d).scrollpos_x = pt.x; WP(w, vp_d).scrollpos_y = pt.y; } -- cgit v1.2.3-70-g09d2