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
This commit is contained in:
Shadooow
2022-02-17 02:33:23 +00:00
parent 4f0386be62
commit 1c8b6a0f29
+2
View File
@@ -9058,10 +9058,12 @@ void PollWheelInMapView(UINT32 *puiNewEvent)
const auto Wheelstate = _WheelValue * (gGameSettings.fOptions[TOPTION_INVERT_WHEEL] ? -1 : 1); const auto Wheelstate = _WheelValue * (gGameSettings.fOptions[TOPTION_INVERT_WHEEL] ? -1 : 1);
if (Wheelstate < 0) if (Wheelstate < 0)
{ {
fResetMapCoords = TRUE;
GoToNextCharacterInList(); GoToNextCharacterInList();
} }
else if (Wheelstate > 0) else if (Wheelstate > 0)
{ {
fResetMapCoords = TRUE;
GoToPrevCharacterInList(); GoToPrevCharacterInList();
} }
_WheelValue = 0; _WheelValue = 0;