[Scummvm-git-logs] scummvm master -> 1846ef7850547342b3b0792144d2b94d23492b91

dreammaster dreammaster at scummvm.org
Thu Nov 3 01:29:00 CET 2016


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:
1846ef7850 TITANIC: Disable secondary spatial sources of speech playback


Commit: 1846ef7850547342b3b0792144d2b94d23492b91
    https://github.com/scummvm/scummvm/commit/1846ef7850547342b3b0792144d2b94d23492b91
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-11-02T20:28:33-04:00

Commit Message:
TITANIC: Disable secondary spatial sources of speech playback

Changed paths:
    engines/titanic/true_talk/true_talk_manager.cpp



diff --git a/engines/titanic/true_talk/true_talk_manager.cpp b/engines/titanic/true_talk/true_talk_manager.cpp
index 8e17b92..32360f1 100644
--- a/engines/titanic/true_talk/true_talk_manager.cpp
+++ b/engines/titanic/true_talk/true_talk_manager.cpp
@@ -538,12 +538,16 @@ void CTrueTalkManager::playSpeech(TTtalker *talker, TTroomScript *roomScript, CV
 
 		if (idx == 0)
 			g_vm->_events->sleep(milli);
-
+#if 0
+		// TODO: Figure out if these below are needed. It kinda looks like they were
+		// simply playing the same speech at different spatial co-ordinates. And since
+		// we don't support spatial processing in ScummVM yet, they're being left disabled
 		p3._priorSoundHandle = _gameManager->_sound.playSpeech(_dialogueFile, id - _dialogueId, p3);
 		if (idx == 0)
 			g_vm->_events->sleep(milli);
 
 		p2._priorSoundHandle = _gameManager->_sound.playSpeech(_dialogueFile, id - _dialogueId, p2);
+#endif
 	}
 }
 





More information about the Scummvm-git-logs mailing list