mirror of
https://github.com/1dot13/source.git
synced 2026-09-09 14:46:05 +02:00
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:
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user