Skip to content

Commit

Permalink
Disable joysticks per default for now
Browse files Browse the repository at this point in the history
It seems that various different devices register as
Joysticks on linux, and their presence has caused
lots of confusion amongst minetest users.

Therefore, disable the joystick feature.

Closes #4261
Closes #4221
  • Loading branch information
est31 committed Jul 4, 2016
1 parent e1aa98f commit f649147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion builtin/settingtypes.txt
Expand Up @@ -105,7 +105,7 @@ random_input (Random input) bool false
continuous_forward (Continuous forward) bool false

# Enable Joysticks
enable_joysticks (Enable Joysticks) bool true
enable_joysticks (Enable Joysticks) bool false

# The time in seconds it takes between repeated events
# when holding down a joystick button combination.
Expand Down
2 changes: 1 addition & 1 deletion src/defaultsettings.cpp
Expand Up @@ -116,7 +116,7 @@ void set_default_settings(Settings *settings)
settings->setDefault("free_move", "false");
settings->setDefault("noclip", "false");
settings->setDefault("continuous_forward", "false");
settings->setDefault("enable_joysticks", "true");
settings->setDefault("enable_joysticks", "false");
settings->setDefault("repeat_joystick_button_time", "0.17");
settings->setDefault("joystick_frustum_sensitivity", "170");
settings->setDefault("cinematic", "false");
Expand Down

0 comments on commit f649147

Please sign in to comment.