diff options
| author | 2023-02-22 22:08:35 -0500 | |
|---|---|---|
| committer | 2023-02-22 22:08:35 -0500 | |
| commit | ca8a804a3c28f53bba9d1f9080ae15c13f60ce9c (patch) | |
| tree | ac8c6c62c2f43c41e887b269520c6d2482cf95a2 /src/common | |
| parent | Merge pull request #9847 from german77/timeout (diff) | |
| parent | settings: Add more input settings to the log (diff) | |
| download | yuzu-ca8a804a3c28f53bba9d1f9080ae15c13f60ce9c.tar.gz yuzu-ca8a804a3c28f53bba9d1f9080ae15c13f60ce9c.tar.xz yuzu-ca8a804a3c28f53bba9d1f9080ae15c13f60ce9c.zip | |
Merge pull request #9842 from german77/proper_real_mouse
core: hid: Fix native mouse mapping
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/settings.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 49b41c158..749ac213f 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -76,6 +76,13 @@ void LogSettings() { | |||
| 76 | log_setting("Debugging_GDBStub", values.use_gdbstub.GetValue()); | 76 | log_setting("Debugging_GDBStub", values.use_gdbstub.GetValue()); |
| 77 | log_setting("Input_EnableMotion", values.motion_enabled.GetValue()); | 77 | log_setting("Input_EnableMotion", values.motion_enabled.GetValue()); |
| 78 | log_setting("Input_EnableVibration", values.vibration_enabled.GetValue()); | 78 | log_setting("Input_EnableVibration", values.vibration_enabled.GetValue()); |
| 79 | log_setting("Input_EnableTouch", values.touchscreen.enabled); | ||
| 80 | log_setting("Input_EnableMouse", values.mouse_enabled.GetValue()); | ||
| 81 | log_setting("Input_EnableKeyboard", values.keyboard_enabled.GetValue()); | ||
| 82 | log_setting("Input_EnableRingController", values.enable_ring_controller.GetValue()); | ||
| 83 | log_setting("Input_EnableIrSensor", values.enable_ir_sensor.GetValue()); | ||
| 84 | log_setting("Input_EnableCustomJoycon", values.enable_joycon_driver.GetValue()); | ||
| 85 | log_setting("Input_EnableCustomProController", values.enable_procon_driver.GetValue()); | ||
| 79 | log_setting("Input_EnableRawInput", values.enable_raw_input.GetValue()); | 86 | log_setting("Input_EnableRawInput", values.enable_raw_input.GetValue()); |
| 80 | } | 87 | } |
| 81 | 88 | ||