Fixed: by default on linux DisableDirectInput is set to true

This commit is contained in:
vl 2010-05-10 10:33:46 +02:00
parent 0939306ec7
commit 4b818d8023

View file

@ -294,7 +294,12 @@ CClientConfig::CClientConfig()
ForceDeltaTime = 0; // Default ForceDeltaTime, disabled by default
#ifdef NL_OS_WINDOWS
DisableDirectInput = false; // Default DisableDirectInput
#else
DisableDirectInput = true; // no direct input on linux
#endif
DisableDirectInputKeyboard = true; // Default DisableDirectInput fort he keyboard only
HardwareCursor = true; // Default HardwareCursor
HardwareCursorScale = 0.85f;