From c693463c29f98f763cc4dd6346527262b34ff6ea Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Sun, 20 May 2018 13:03:09 +0100 Subject: Fix: Always draw dirty blocks, else fast-forward is super fast. --- src/window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/window.cpp b/src/window.cpp index bbde131a4..7a7a2a182 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -3156,10 +3156,10 @@ void UpdateWindows() w->SetDirty(); } } - - DrawDirtyBlocks(); } + DrawDirtyBlocks(); + FOR_ALL_WINDOWS_FROM_BACK(w) { /* Update viewport only if window is not shaded. */ if (w->viewport != NULL && !w->IsShaded()) UpdateViewportPosition(w); -- cgit v1.2.3-54-g00ecf