mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
ControllerInterface: Gate the input based on our new background input setting
This commit is contained in:
@ -228,12 +228,12 @@ public:
|
||||
|
||||
virtual ControlState GetValue() override
|
||||
{
|
||||
return control->ToInput()->GetState();
|
||||
return control->ToInput()->GetGatedState();
|
||||
}
|
||||
|
||||
virtual void SetValue(ControlState value) override
|
||||
{
|
||||
control->ToOutput()->SetState(value);
|
||||
control->ToOutput()->SetGatedState(value);
|
||||
}
|
||||
|
||||
virtual int CountNumControls() override
|
||||
|
Reference in New Issue
Block a user