[Scummvm-git-logs] scummvm master -> 1720cdb659a104d691538f2fe582858deea1e975

bluegr bluegr at gmail.com
Fri Aug 20 21:19:54 UTC 2021


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:
1720cdb659 SCI: Fix GK2 patch dialog button behavior


Commit: 1720cdb659a104d691538f2fe582858deea1e975
    https://github.com/scummvm/scummvm/commit/1720cdb659a104d691538f2fe582858deea1e975
Author: Tarek Soliman (tsoliman at scummvm.org)
Date: 2021-08-21T00:19:51+03:00

Commit Message:
SCI: Fix GK2 patch dialog button behavior

The button behavior was reversed.
"Download patch" did nothing and "ok" downloaded the patch.

Changed paths:
    engines/sci/sci.cpp


diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp
index e9a35e37c8..705f56bd98 100644
--- a/engines/sci/sci.cpp
+++ b/engines/sci/sci.cpp
@@ -515,7 +515,7 @@ void SciEngine::suggestDownloadGK2SubTitlesPatch() {
 		"- copy the content of GK2Subtitles\\SUBPATCH to the PATCHES subdirectory\n"
 		"- replace files with similar names\n"
 		"- restart the game\n"), altButton, false);
-	if (!result) {
+	if (result) {
 		char url[] = "http://www.sierrahelp.com/Files/Patches/GabrielKnight/GK2Subtitles.zip";
 		g_system->openUrl(url);
 	}




More information about the Scummvm-git-logs mailing list