diff options
| author | uruk | 2013-07-30 21:52:49 +0200 | 
|---|---|---|
| committer | uruk | 2013-07-30 21:52:49 +0200 | 
| commit | 2e741241c5b38725b1f2911e22312102155c0d72 (patch) | |
| tree | d1842ec2a3cf81a85d8ac65469bdf1fcd91df7e4 | |
| parent | 7800c4735f7d38efc2f54d8e19b8a5ed2cd9e1c6 (diff) | |
| download | scummvm-rg350-2e741241c5b38725b1f2911e22312102155c0d72.tar.gz scummvm-rg350-2e741241c5b38725b1f2911e22312102155c0d72.tar.bz2 scummvm-rg350-2e741241c5b38725b1f2911e22312102155c0d72.zip  | |
AVALANCHE: Broaden Avalot::handleKeyDown().
| -rw-r--r-- | engines/avalanche/avalot.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/avalanche/avalot.cpp b/engines/avalanche/avalot.cpp index 7b993a5e1c..3363b92569 100644 --- a/engines/avalanche/avalot.cpp +++ b/engines/avalanche/avalot.cpp @@ -181,6 +181,12 @@ void Avalot::handleKeyDown(const Common::Event &event) {  	if ((32 <= event.kbd.ascii) && (event.kbd.ascii <= 128) && (event.kbd.ascii != 47))  		_vm->_parser->handleInputText(event); + + + +	_vm->_lucerna->showrw(); +	 if (_vm->_gyro->demo) +		 _vm->_basher->get_demorec();  }  | 
