From 1c8b6a0f297d4452def09d8b0a18ad33fee8cf46 Mon Sep 17 00:00:00 2001 From: Shadooow Date: Thu, 17 Feb 2022 02:33:23 +0000 Subject: [PATCH] fix: force inventory redraw when using the mouse wheel to navigate through your mercs in strategic view. fixes bad inventory render when using a mouse to scroll from vehicle's inventory to a merc, and vice versa (by rftr) git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@9304 3b4a5df2-a311-0410-b5c6-a8a6f20db521 --- Strategic/mapscreen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Strategic/mapscreen.cpp b/Strategic/mapscreen.cpp index cabc42e0..2a189afb 100644 --- a/Strategic/mapscreen.cpp +++ b/Strategic/mapscreen.cpp @@ -9058,10 +9058,12 @@ void PollWheelInMapView(UINT32 *puiNewEvent) const auto Wheelstate = _WheelValue * (gGameSettings.fOptions[TOPTION_INVERT_WHEEL] ? -1 : 1); if (Wheelstate < 0) { + fResetMapCoords = TRUE; GoToNextCharacterInList(); } else if (Wheelstate > 0) { + fResetMapCoords = TRUE; GoToPrevCharacterInList(); } _WheelValue = 0;