diff options
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/settings.cpp | 7 | ||||
-rw-r--r-- | src/common/settings.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 70b02146b..84955030b 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -77,6 +77,13 @@ void LogSettings() { log_setting("Debugging_GDBStub", values.use_gdbstub.GetValue()); log_setting("Input_EnableMotion", values.motion_enabled.GetValue()); log_setting("Input_EnableVibration", values.vibration_enabled.GetValue()); + log_setting("Input_EnableTouch", values.touchscreen.enabled); + log_setting("Input_EnableMouse", values.mouse_enabled.GetValue()); + log_setting("Input_EnableKeyboard", values.keyboard_enabled.GetValue()); + log_setting("Input_EnableRingController", values.enable_ring_controller.GetValue()); + log_setting("Input_EnableIrSensor", values.enable_ir_sensor.GetValue()); + log_setting("Input_EnableCustomJoycon", values.enable_joycon_driver.GetValue()); + log_setting("Input_EnableCustomProController", values.enable_procon_driver.GetValue()); log_setting("Input_EnableRawInput", values.enable_raw_input.GetValue()); } diff --git a/src/common/settings.h b/src/common/settings.h index 512ecff69..4d0694b7d 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -482,7 +482,7 @@ struct Values { SwitchableSetting<s32, true> sound_index{1, 0, 2, "sound_index"}; // Controls - InputSetting<std::array<PlayerInput, 10>> players; + InputSetting<std::array<PlayerInput, 8>> players; SwitchableSetting<bool> use_docked_mode{true, "use_docked_mode"}; |