[Scummvm-cvs-logs] scummvm master -> b95ea8dccde620b0a562ef654870b58a4a668b5d

Strangerke arnaud.boutonne at gmail.com
Thu Apr 28 08:34:31 CEST 2011


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:
b95ea8dccd TSAGE: Fix a little bug in scene 5100, when looking at the speaking bat


Commit: b95ea8dccde620b0a562ef654870b58a4a668b5d
    https://github.com/scummvm/scummvm/commit/b95ea8dccde620b0a562ef654870b58a4a668b5d
Author: strangerke (arnaud.boutonne at gmail.com)
Date: 2011-04-27T23:33:47-07:00

Commit Message:
TSAGE: Fix a little bug in scene 5100, when looking at the speaking bat

Changed paths:
    engines/tsage/ringworld_scenes6.cpp



diff --git a/engines/tsage/ringworld_scenes6.cpp b/engines/tsage/ringworld_scenes6.cpp
index 9581b1f..97887aa 100644
--- a/engines/tsage/ringworld_scenes6.cpp
+++ b/engines/tsage/ringworld_scenes6.cpp
@@ -832,6 +832,7 @@ void Scene5100::Action5::signal() {
 /*--------------------------------------------------------------------------*/
 
 void Scene5100::HotspotGroup1::doAction(int action) {
+	// Flesh Eaters
 	Scene5100 *scene = (Scene5100 *)_globals->_sceneManager._scene;
 
 	switch (action) {
@@ -884,11 +885,12 @@ void Scene5100::Hotspot4::doAction(int action) {
 }
 
 void Scene5100::HotspotGroup2::doAction(int action) {
+	// Bat
 	Scene5100 *scene = (Scene5100 *)_globals->_sceneManager._scene;
 
 	switch (action) {
 	case CURSOR_LOOK:
-		SceneItem::display2(5100, _globals->getFlag(62) ? 47 : 23);
+		SceneItem::display2(5100, _globals->getFlag(108) ? 47 : 23);
 		break;
 	case CURSOR_USE:
 		SceneItem::display2(5100, 29);
@@ -1008,6 +1010,7 @@ void Scene5100::Hotspot18::doAction(int action) {
 }
 
 void Scene5100::Hotspot19::doAction(int action) {
+	// Pillar
 	Scene5100 *scene = (Scene5100 *)_globals->_sceneManager._scene;
 
 	switch (action) {






More information about the Scummvm-git-logs mailing list