mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-01 01:20:40 +00:00
ControllerEmu: Increase Total Yaw/Pitch default values to compensate for new FOV and to reach screen edges in the Wii Menu.
This commit is contained in:
parent
f9280d0f66
commit
f766c89a08
@ -33,8 +33,7 @@ Cursor::Cursor(std::string name_, std::string ui_name_)
|
|||||||
|
|
||||||
AddInput(Translate, _trans("Relative Input Hold"));
|
AddInput(Translate, _trans("Relative Input Hold"));
|
||||||
|
|
||||||
// Default values are optimized for "Super Mario Galaxy 2".
|
// Default values chosen to reach screen edges in most games including the Wii Menu.
|
||||||
// This seems to be acceptable for a good number of games.
|
|
||||||
|
|
||||||
AddSetting(&m_vertical_offset_setting,
|
AddSetting(&m_vertical_offset_setting,
|
||||||
// i18n: Refers to a positional offset applied to an emulated wiimote.
|
// i18n: Refers to a positional offset applied to an emulated wiimote.
|
||||||
@ -50,7 +49,7 @@ Cursor::Cursor(std::string name_, std::string ui_name_)
|
|||||||
_trans("°"),
|
_trans("°"),
|
||||||
// i18n: Refers to emulated wii remote movements.
|
// i18n: Refers to emulated wii remote movements.
|
||||||
_trans("Total rotation about the yaw axis.")},
|
_trans("Total rotation about the yaw axis.")},
|
||||||
15, 0, 360);
|
25, 0, 360);
|
||||||
|
|
||||||
AddSetting(&m_pitch_setting,
|
AddSetting(&m_pitch_setting,
|
||||||
// i18n: Refers to an amount of rotational movement about the "pitch" axis.
|
// i18n: Refers to an amount of rotational movement about the "pitch" axis.
|
||||||
@ -59,7 +58,7 @@ Cursor::Cursor(std::string name_, std::string ui_name_)
|
|||||||
_trans("°"),
|
_trans("°"),
|
||||||
// i18n: Refers to emulated wii remote movements.
|
// i18n: Refers to emulated wii remote movements.
|
||||||
_trans("Total rotation about the pitch axis.")},
|
_trans("Total rotation about the pitch axis.")},
|
||||||
15, 0, 360);
|
20, 0, 360);
|
||||||
|
|
||||||
AddSetting(&m_relative_setting, {_trans("Relative Input")}, false);
|
AddSetting(&m_relative_setting, {_trans("Relative Input")}, false);
|
||||||
AddSetting(&m_autohide_setting, {_trans("Auto-Hide")}, false);
|
AddSetting(&m_autohide_setting, {_trans("Auto-Hide")}, false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user