diff options
| author | Paul Gilbert | 2014-03-29 11:18:07 -0400 | 
|---|---|---|
| committer | Paul Gilbert | 2014-03-29 11:18:07 -0400 | 
| commit | 71b1343adf6e886cfd2e1a0040a12b5025672d14 (patch) | |
| tree | f21fb355b8fc2aeab61b8078c929a29f43decc26 /engines/mads/nebular/nebular_scenes2.cpp | |
| parent | d801c2ffdd1b2e5cfefcea18309a4779e0a824a1 (diff) | |
| download | scummvm-rg350-71b1343adf6e886cfd2e1a0040a12b5025672d14.tar.gz scummvm-rg350-71b1343adf6e886cfd2e1a0040a12b5025672d14.tar.bz2 scummvm-rg350-71b1343adf6e886cfd2e1a0040a12b5025672d14.zip | |
MADS: Implemented NebularGame::step
Diffstat (limited to 'engines/mads/nebular/nebular_scenes2.cpp')
| -rw-r--r-- | engines/mads/nebular/nebular_scenes2.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/engines/mads/nebular/nebular_scenes2.cpp b/engines/mads/nebular/nebular_scenes2.cpp index 99c6cf4103..da9341a71a 100644 --- a/engines/mads/nebular/nebular_scenes2.cpp +++ b/engines/mads/nebular/nebular_scenes2.cpp @@ -458,7 +458,7 @@ void Scene202::enter() {  void Scene202::setRandomKernelMessage() {  	int vocabId = _vm->getRandomNumber(92, 96);  	_scene->_kernelMessages.reset(); -	_game._abortTimersMode2 = ABORTMODE_1; +	_game._triggerSetupMode = KERNEL_TRIGGER_DAEMON;  	_scene->_kernelMessages.add(Common::Point(0, 0), 0x1110, 34, 70, 120, _game.getQuote(vocabId));  	_activeMsgFl = true;  } @@ -495,7 +495,7 @@ void Scene202::step() {  			action->_activeAction._verbId = 3;  			action->_activeAction._objectNameId = 39;  			action->_activeAction._indirectObjectId = 438; -			_game._abortTimersMode2 = ABORTMODE_0; +			_game._triggerSetupMode = KERNEL_TRIGGER_PARSER;  			_scene->_sequences.addTimer(120, 2);  			_globals._abortVal = -1;  		} else if (_globals[kMeteorologistWatch] == 2) { | 
