1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-07-22 02:44:08 +00:00

[Client] Fix overlap of GuiMode IDs for VR meta menu and TES3MP InputBox

This commit is contained in:
David Cernat 2022-05-06 00:12:59 +03:00
parent 346b4308b8
commit 3b355653d4

View file

@ -24,7 +24,8 @@ namespace mwmp
public: public:
enum GM enum GM
{ {
GM_TES3MP_InputBox = MWGui::GM_QuickKeysMenu + 1, GM_VR_MetaMenu = MWGui::GM_QuickKeysMenu + 1, // Put this dummy GuiMode here because it's used in VR
GM_TES3MP_InputBox,
GM_TES3MP_ListBox GM_TES3MP_ListBox
}; };