diff options
Diffstat (limited to 'engines/gob/util.cpp')
| -rw-r--r-- | engines/gob/util.cpp | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/engines/gob/util.cpp b/engines/gob/util.cpp index d89368b898..e1148dacb9 100644 --- a/engines/gob/util.cpp +++ b/engines/gob/util.cpp @@ -235,6 +235,17 @@ int16 Util::checkKey(void) {  	return translateKey(key);  } +bool Util::checkKey(int16 &key) { +	Common::KeyState keyS; + +	if (!getKeyFromBuffer(keyS)) +		return false; + +	key = translateKey(keyS); + +	return true; +} +  void Util::getMouseState(int16 *pX, int16 *pY, int16 *pButtons) {  	Common::Point mouse = g_system->getEventManager()->getMousePos();  	*pX = mouse.x + _vm->_video->_scrollOffsetX - _vm->_video->_screenDeltaX; | 
