[Scummvm-git-logs] scummvm master -> 80fa7481ff954ebcba1447ab670d9962e0497a27

dreammaster dreammaster at scummvm.org
Tue Apr 10 03:49:07 CEST 2018


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:
80fa7481ff XEEN: Fix subtitle cutscene text for entering Darkside towns


Commit: 80fa7481ff954ebcba1447ab670d9962e0497a27
    https://github.com/scummvm/scummvm/commit/80fa7481ff954ebcba1447ab670d9962e0497a27
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-04-09T21:48:59-04:00

Commit Message:
XEEN: Fix subtitle cutscene text for entering Darkside towns

Changed paths:
    engines/xeen/locations.cpp


diff --git a/engines/xeen/locations.cpp b/engines/xeen/locations.cpp
index bae4744..dedd9bc 100644
--- a/engines/xeen/locations.cpp
+++ b/engines/xeen/locations.cpp
@@ -1880,7 +1880,10 @@ int DwarfCutscene::show() {
 	screen.blitFrom(savedBg);
 	sprites2.draw(0, 0);
 	windows[0].update();
-	_subtitles.setLine(_ccNum ? 0 : 4);
+	if (_ccNum)
+		_subtitles.setLine(_keyFound ? 7 : 8);
+	else
+		_subtitles.setLine(4);
 
 	for (int idx = 0; idx < (_ccNum ? 2 : 3); ++idx) {
 		switch (idx) {





More information about the Scummvm-git-logs mailing list