From 51eaa5cd1f57fb395d16f29f0c516830fe1ca39c Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 31 Dec 2019 02:48:16 +0100 Subject: [PATCH] - let mouse control in the menu default to Touchscreen-like, like it is in GZDoom. --- source/common/menu/menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/menu/menu.cpp b/source/common/menu/menu.cpp index 347adc0a9..9730b3ecd 100644 --- a/source/common/menu/menu.cpp +++ b/source/common/menu/menu.cpp @@ -78,7 +78,7 @@ EXTERN_CVAR (Bool, show_messages) CVAR(Bool, menu_sounds, true, CVAR_ARCHIVE) // added mainly because RR's sounds are so supremely annoying. //CVAR (Float, snd_menuvolume, 0.6f, CVAR_ARCHIVE) the current sound engine cannot deal with this. -CVAR(Int, m_use_mouse, 1, CVAR_ARCHIVE|CVAR_GLOBALCONFIG) +CVAR(Int, m_use_mouse, 2, CVAR_ARCHIVE|CVAR_GLOBALCONFIG) CVAR(Int, m_show_backbutton, 0, CVAR_ARCHIVE|CVAR_GLOBALCONFIG) TArray menuClasses(TArray::ENoInit(0));