Skip to content

Commit 093ffd0

Browse files
committed
Fix Map Menu not showing any markers
1 parent 10d6f6a commit 093ffd0

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/Menus/MapMenuEx.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ namespace SkyrimSoulsRE
5050

5151
cellRenderingUpdateNeeded = false;
5252
}
53+
54+
// Prevent the original function to receive the message or else it will attempt to endlessly update the map markers
55+
if (a_message.menu != MENU_NAME)
56+
{
57+
return RE::UI_MESSAGE_RESULTS::kHandled;
58+
}
5359
}
5460

5561
return _ProcessMessage(this, a_message);

0 commit comments

Comments
 (0)