| Index: trunk/Source/modules/gamepad/GamepadButton.h
|
| ===================================================================
|
| --- trunk/Source/modules/gamepad/GamepadButton.h (revision 174432)
|
| +++ trunk/Source/modules/gamepad/GamepadButton.h (working copy)
|
| @@ -17,8 +17,8 @@
|
| static GamepadButton* create();
|
| ~GamepadButton();
|
|
|
| - double value() const { return m_value; }
|
| - void setValue(double val) { m_value = val; }
|
| + float value() const { return m_value; }
|
| + void setValue(float val) { m_value = val; }
|
|
|
| bool pressed() const { return m_pressed; }
|
| void setPressed(bool val) { m_pressed = val; }
|
| @@ -27,7 +27,7 @@
|
|
|
| private:
|
| GamepadButton();
|
| - double m_value;
|
| + float m_value;
|
| bool m_pressed;
|
| };
|
|
|
|
|