[Scummvm-cvs-logs] scummvm master -> 60c0de620091c083051555a3ce79680a0bef9abb
dreammaster
dreammaster at scummvm.org
Sun Jun 1 00:12:09 CEST 2014
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
60c0de6200 MADS: Fix order of parameters in quote display in scene 307
Commit: 60c0de620091c083051555a3ce79680a0bef9abb
https://github.com/scummvm/scummvm/commit/60c0de620091c083051555a3ce79680a0bef9abb
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2014-05-31T18:11:32-04:00
Commit Message:
MADS: Fix order of parameters in quote display in scene 307
Changed paths:
engines/mads/nebular/nebular_scenes3.cpp
diff --git a/engines/mads/nebular/nebular_scenes3.cpp b/engines/mads/nebular/nebular_scenes3.cpp
index 0ae7995..5ccc7ca 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;
More information about the Scummvm-git-logs
mailing list