diff options
Diffstat (limited to 'src/input/mouseinput.h')
-rw-r--r-- | src/input/mouseinput.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/input/mouseinput.h b/src/input/mouseinput.h index c69bd72b7..f84303308 100644 --- a/src/input/mouseinput.h +++ b/src/input/mouseinput.h @@ -95,12 +95,12 @@ class MouseInput final return mType; } - void setButton(MouseButton::Type button) + void setButton(MouseButtonT button) { mButton = button; } - MouseButton::Type getButton() const + MouseButtonT getButton() const { return mButton; } @@ -167,7 +167,7 @@ class MouseInput final /** * Holds the button of the mouse input. */ - MouseButton::Type mButton; + MouseButtonT mButton; /** * Holds the timestamp of the mouse input. Used to |