From db2785082b4824dbeb66b0783881a8ed3ce8b1a1 Mon Sep 17 00:00:00 2001 From: Narr the Reg Date: Tue, 21 Feb 2023 12:42:18 -0600 Subject: [PATCH] settings: Add more input settings to the log --- src/common/settings.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 49b41c1589..749ac213f8 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -76,6 +76,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()); }