HW/GCPadEmu: Adjust gate radius values to more closely match the real hardware.
This commit is contained in:
parent
487cd7abd9
commit
ae44f17667
|
@ -64,14 +64,10 @@ GCPad::GCPad(const unsigned int index) : m_index(index)
|
|||
}
|
||||
|
||||
// sticks
|
||||
constexpr auto main_gate_radius =
|
||||
ControlState(MAIN_STICK_GATE_RADIUS) / GCPadStatus::MAIN_STICK_RADIUS;
|
||||
groups.emplace_back(m_main_stick = new ControllerEmu::OctagonAnalogStick(
|
||||
"Main Stick", _trans("Control Stick"), main_gate_radius));
|
||||
|
||||
constexpr auto c_gate_radius = ControlState(C_STICK_GATE_RADIUS) / GCPadStatus::C_STICK_RADIUS;
|
||||
"Main Stick", _trans("Control Stick"), MAIN_STICK_GATE_RADIUS));
|
||||
groups.emplace_back(m_c_stick = new ControllerEmu::OctagonAnalogStick(
|
||||
"C-Stick", _trans("C Stick"), c_gate_radius));
|
||||
"C-Stick", _trans("C Stick"), C_STICK_GATE_RADIUS));
|
||||
|
||||
// triggers
|
||||
groups.emplace_back(m_triggers = new ControllerEmu::MixedTriggers(_trans("Triggers")));
|
||||
|
|
|
@ -46,8 +46,9 @@ public:
|
|||
|
||||
void LoadDefaults(const ControllerInterface& ciface) override;
|
||||
|
||||
static const u8 MAIN_STICK_GATE_RADIUS = 87;
|
||||
static const u8 C_STICK_GATE_RADIUS = 74;
|
||||
// Values averaged from multiple genuine GameCube controllers.
|
||||
static constexpr ControlState MAIN_STICK_GATE_RADIUS = 0.7937125;
|
||||
static constexpr ControlState C_STICK_GATE_RADIUS = 0.7221375;
|
||||
|
||||
private:
|
||||
ControllerEmu::Buttons* m_buttons;
|
||||
|
|
Loading…
Reference in New Issue