diff options
| author | Paul Gilbert | 2016-01-09 09:56:09 +1100 |
|---|---|---|
| committer | Paul Gilbert | 2016-01-09 09:56:09 +1100 |
| commit | d866b246052006183195c1cb7f2a862ff613349a (patch) | |
| tree | 087b431b64cb9f6c84187bb47384bdd76e7de78f /engines/mads/dragonsphere | |
| parent | 28b91136cd98353f48cb7d2501f49d8d30828889 (diff) | |
| download | scummvm-rg350-d866b246052006183195c1cb7f2a862ff613349a.tar.gz scummvm-rg350-d866b246052006183195c1cb7f2a862ff613349a.tar.bz2 scummvm-rg350-d866b246052006183195c1cb7f2a862ff613349a.zip | |
MADS: Implement bulk of remaining conversation setup and support methods
Diffstat (limited to 'engines/mads/dragonsphere')
| -rw-r--r-- | engines/mads/dragonsphere/dragonsphere_scenes1.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/mads/dragonsphere/dragonsphere_scenes1.cpp b/engines/mads/dragonsphere/dragonsphere_scenes1.cpp index 7d09c616ac..ee32a0fdef 100644 --- a/engines/mads/dragonsphere/dragonsphere_scenes1.cpp +++ b/engines/mads/dragonsphere/dragonsphere_scenes1.cpp @@ -1332,7 +1332,7 @@ void Scene104::enter() { _scene->_dynamicHotspots[idx]._articleNumber = PREP_ON; _scene->setDynamicAnim(idx, _globals._animationIndexes[0], 0); - if (_vm->_gameConv->_restoreRunning == 1) { + if (_vm->_gameConv->restoreRunning() == 1) { _game._player._stepEnabled = false; _vm->_gameConv->run(1); _vm->_gameConv->exportValue(0); @@ -2304,8 +2304,8 @@ void Scene104::handleFinalConversation() { break; case 30: - *_vm->_gameConv->_nextStartNode = 31; - _vm->_gameConv->abortConv(); + _vm->_gameConv->setStartNode(31); + _vm->_gameConv->stop(); if (_globals[kLlanieStatus] == 2) { _globals._animationIndexes[3] = _scene->loadAnimation(formAnimName('l', 1), 0); |
