diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2020-01-21 18:50:05 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2020-02-17 16:14:01 -0600 |
| commit | 58448d74c541d8081bafff4d35940281db88c610 (patch) | |
| tree | 92444ee99d0e9fd6ccd7de68a3f2e31a652bfa05 /Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp | |
| parent | 4176cc77e1c3627ceee7b849195f026efc1bf9ca (diff) | |
InputCommon: Add real Wii Remote support to ControllerInterface. Add option to connect additional Wii Remotes.
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp index b5a621e43b..382bd8c2a4 100644 --- a/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp +++ b/Source/Core/InputCommon/ControllerEmu/ControlGroup/Cursor.cpp @@ -50,7 +50,7 @@ Cursor::Cursor(std::string name, std::string ui_name) _trans("°"), // i18n: Refers to emulated wii remote movements. _trans("Total rotation about the yaw axis.")}, - 15, 0, 180); + 15, 0, 360); AddSetting(&m_pitch_setting, // i18n: Refers to an amount of rotational movement about the "pitch" axis. @@ -59,7 +59,7 @@ Cursor::Cursor(std::string name, std::string ui_name) _trans("°"), // i18n: Refers to emulated wii remote movements. _trans("Total rotation about the pitch axis.")}, - 15, 0, 180); + 15, 0, 360); AddSetting(&m_relative_setting, {_trans("Relative Input")}, false); AddSetting(&m_autohide_setting, {_trans("Auto-Hide")}, false); |
