mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Fixed: by default on linux DisableDirectInput is set to true
This commit is contained in:
parent
d02ea1ef3f
commit
61e1c62339
1 changed files with 5 additions and 0 deletions
|
@ -294,7 +294,12 @@ CClientConfig::CClientConfig()
|
||||||
|
|
||||||
ForceDeltaTime = 0; // Default ForceDeltaTime, disabled by default
|
ForceDeltaTime = 0; // Default ForceDeltaTime, disabled by default
|
||||||
|
|
||||||
|
#ifdef NL_OS_WINDOWS
|
||||||
DisableDirectInput = false; // Default DisableDirectInput
|
DisableDirectInput = false; // Default DisableDirectInput
|
||||||
|
#else
|
||||||
|
DisableDirectInput = true; // no direct input on linux
|
||||||
|
#endif
|
||||||
|
|
||||||
DisableDirectInputKeyboard = true; // Default DisableDirectInput fort he keyboard only
|
DisableDirectInputKeyboard = true; // Default DisableDirectInput fort he keyboard only
|
||||||
HardwareCursor = true; // Default HardwareCursor
|
HardwareCursor = true; // Default HardwareCursor
|
||||||
HardwareCursorScale = 0.85f;
|
HardwareCursorScale = 0.85f;
|
||||||
|
|
Loading…
Reference in a new issue