mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
InputCommon: add a ton of missing consts
fix some related grammar errors only the ButtonManager required code changes
This commit is contained in:
parent
d586163e38
commit
a261e61e9e
20 changed files with 61 additions and 40 deletions
|
@ -91,7 +91,7 @@ public:
|
|||
virtual ControlState GetVirtualNotchSize() const { return 0.0; };
|
||||
|
||||
virtual ControlState GetGateRadiusAtAngle(double angle) const = 0;
|
||||
virtual ReshapeData GetReshapableState(bool adjusted) = 0;
|
||||
virtual ReshapeData GetReshapableState(bool adjusted) const = 0;
|
||||
virtual ControlState GetDefaultInputRadiusAtAngle(double ang) const;
|
||||
|
||||
void SetCalibrationToDefault();
|
||||
|
@ -108,7 +108,7 @@ public:
|
|||
void SetCenter(ReshapeData center);
|
||||
|
||||
protected:
|
||||
ReshapeData Reshape(ControlState x, ControlState y, ControlState modifier = 0.0);
|
||||
ReshapeData Reshape(ControlState x, ControlState y, ControlState modifier = 0.0) const;
|
||||
|
||||
private:
|
||||
void LoadConfig(IniFile::Section*, const std::string&, const std::string&) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue