mirror of
https://github.com/holub/mame
synced 2025-04-19 15:11:37 +03:00
Merge pull request #4913 from kiall/default-enable-xinput
Enable Xinput by default
This commit is contained in:
commit
d15ca02d0c
2
makefile
2
makefile
@ -35,7 +35,7 @@
|
||||
# DONT_USE_NETWORK = 1
|
||||
# USE_QTDEBUG = 1
|
||||
# NO_X11 = 1
|
||||
# NO_USE_XINPUT = 0
|
||||
# NO_USE_XINPUT = 1
|
||||
# FORCE_DRC_C_BACKEND = 1
|
||||
|
||||
# DEBUG = 1
|
||||
|
@ -170,7 +170,11 @@ newoption {
|
||||
}
|
||||
|
||||
if not _OPTIONS["NO_USE_XINPUT"] then
|
||||
_OPTIONS["NO_USE_XINPUT"] = "1"
|
||||
if _OPTIONS["targetos"]=="windows" or _OPTIONS["targetos"]=="macosx" or _OPTIONS["targetos"]=="haiku" or _OPTIONS["targetos"]=="asmjs" then
|
||||
_OPTIONS["NO_USE_XINPUT"] = "1"
|
||||
else
|
||||
_OPTIONS["NO_USE_XINPUT"] = "0"
|
||||
end
|
||||
end
|
||||
|
||||
newoption {
|
||||
|
Loading…
Reference in New Issue
Block a user