aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD G Turner2012-10-31 04:20:58 +0000
committerD G Turner2012-11-11 23:13:47 +0000
commit535180dc7b6439882d387b6f3f2de2eb3bd7ca5f (patch)
tree80b2b651738b784c43bdf97023817f46c83c486b
parentfaa7579241b1abcedf1f177124c301d6eeafbf9f (diff)
downloadscummvm-rg350-535180dc7b6439882d387b6f3f2de2eb3bd7ca5f.tar.gz
scummvm-rg350-535180dc7b6439882d387b6f3f2de2eb3bd7ca5f.tar.bz2
scummvm-rg350-535180dc7b6439882d387b6f3f2de2eb3bd7ca5f.zip
TONY: Remove unused functions from Input class.
-rw-r--r--engines/tony/input.cpp8
-rw-r--r--engines/tony/input.h6
2 files changed, 0 insertions, 14 deletions
diff --git a/engines/tony/input.cpp b/engines/tony/input.cpp
index b96ccaf842..a01208eee1 100644
--- a/engines/tony/input.cpp
+++ b/engines/tony/input.cpp
@@ -101,14 +101,6 @@ void RMInput::poll() {
}
}
-bool RMInput::mouseLeft() {
- return _leftButton;
-}
-
-bool RMInput::mouseRight() {
- return _rightButton;
-}
-
/**
* Return true if a key has been pressed
*/
diff --git a/engines/tony/input.h b/engines/tony/input.h
index d07eaefe34..5d84b98096 100644
--- a/engines/tony/input.h
+++ b/engines/tony/input.h
@@ -62,12 +62,6 @@ public:
RMPoint mousePos();
/**
- * Current status of the mouse buttons
- */
- bool mouseLeft();
- bool mouseRight();
-
- /**
* Events of mouse clicks
*/
bool mouseLeftClicked();