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

dreammaster dreammaster at scummvm.org
Sun Feb 2 18:08:13 CET 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:
fb14f656ee TSAGE: Fix for same voice line getting repeated for some Scan Ops messages


Commit: fb14f656eebd529152f65a0e4672d4b3a1a3e7c0
    https://github.com/scummvm/scummvm/commit/fb14f656eebd529152f65a0e4672d4b3a1a3e7c0
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2014-02-02T09:07:41-08:00

Commit Message:
TSAGE: Fix for same voice line getting repeated for some Scan Ops messages

Changed paths:
    engines/tsage/ringworld2/ringworld2_scenes0.cpp



diff --git a/engines/tsage/ringworld2/ringworld2_scenes0.cpp b/engines/tsage/ringworld2/ringworld2_scenes0.cpp
index ee63cad..99948b6 100644
--- a/engines/tsage/ringworld2/ringworld2_scenes0.cpp
+++ b/engines/tsage/ringworld2/ringworld2_scenes0.cpp
@@ -4318,7 +4318,7 @@ void Scene325::signal() {
 			R2_GLOBALS._playStream.stop();
 		} else {
 			_sceneMode = 15;
-			R2_GLOBALS._playStream.play(_soundQueue[_soundIndex], this);
+			R2_GLOBALS._playStream.play(_soundQueue[_soundIndex++], this);
 		}
 		break;
 	default:






More information about the Scummvm-git-logs mailing list