aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2014-05-31 18:11:32 -0400
committerPaul Gilbert2014-05-31 18:11:32 -0400
commit60c0de620091c083051555a3ce79680a0bef9abb (patch)
tree34cde6cfe831a20d65ad3138e157c43e0cf75870 /engines
parent7b7f0222ba7f1fcf1daafa17d3bc279f0af5d05b (diff)
downloadscummvm-rg350-60c0de620091c083051555a3ce79680a0bef9abb.tar.gz
scummvm-rg350-60c0de620091c083051555a3ce79680a0bef9abb.tar.bz2
scummvm-rg350-60c0de620091c083051555a3ce79680a0bef9abb.zip
MADS: Fix order of parameters in quote display in scene 307
Diffstat (limited to 'engines')
-rw-r--r--engines/mads/nebular/nebular_scenes3.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/nebular/nebular_scenes3.cpp b/engines/mads/nebular/nebular_scenes3.cpp
index 0ae7995268..5ccc7ca7cd 100644
--- a/engines/mads/nebular/nebular_scenes3.cpp
+++ b/engines/mads/nebular/nebular_scenes3.cpp
@@ -822,7 +822,7 @@ void Scene307::enter() {
sceneEntrySound();
if ((_scene->_priorSceneId == 318) || (_scene->_priorSceneId == 387))
- _scene->_kernelMessages.addQuote(0xF3, 120, 0);
+ _scene->_kernelMessages.addQuote(0xF3, 0, 120);
}
void Scene307::step() {
@@ -996,7 +996,7 @@ void Scene307::actions() {
int hotspotId = _scene->_dynamicHotspots.setPosition(idx, Common::Point(129, 104), FACING_NORTH);
_scene->_dynamicHotspots.setCursor(hotspotId, CURSOR_GO_UP);
_game._objects.removeFromInventory(OBJ_SCALPEL, NOWHERE);
- _scene->_kernelMessages.addQuote(0xF2, 120, 7);
+ _scene->_kernelMessages.addQuote(0xF2, 7, 120);
}
break;