aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/input.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb/input.h')
-rw-r--r--engines/hdb/input.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/hdb/input.h b/engines/hdb/input.h
index e585d0a56f..d649c21928 100644
--- a/engines/hdb/input.h
+++ b/engines/hdb/input.h
@@ -36,10 +36,7 @@ enum Button {
kButtonB = 2 << 5,
kButtonC = 2 << 6,
kButtonD = 2 << 7,
- kButtonMouseL = 2 << 8,
- kButtonMouseM = 2 << 9,
- kButtonMouseR = 2 << 10,
- kButtonExit = 2 << 11
+ kButtonExit = 2 << 8
};
class Input {
@@ -68,6 +65,7 @@ private:
bool _stylusDown;
int _stylusDownX, _stylusDownY;
int _mouseX, _mouseY;
+ int _mouseLButton, _mouseMButton, _mouseRButton;
// Definable Keys
int _keyUp, _keyDown, _keyLeft, _keyRight;