diff options
-rw-r--r-- | engines/hdb/input.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/hdb/input.cpp b/engines/hdb/input.cpp index 3ea214eadc..5c18b75149 100644 --- a/engines/hdb/input.cpp +++ b/engines/hdb/input.cpp @@ -46,12 +46,11 @@ bool Input::init() { } void Input::setButtons(uint16 b) { - warning("STUB: Input: setButtons required"); + _buttons = b; } uint16 Input::getButtons() { - warning("STUB: Input: getButtons required"); - return 0; + return _buttons; } void Input::stylusDown(int x, int y) { |