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

bluegr md5 at scummvm.org
Mon May 21 10:43:07 CEST 2012


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:
b678dca1c0 DREAMWEB: Fix bug #3528160 - "DREAMWEB: graphical glitch on UKV CD version loading screen"


Commit: b678dca1c01be742b9d020b3be481aa3ce562eaf
    https://github.com/scummvm/scummvm/commit/b678dca1c01be742b9d020b3be481aa3ce562eaf
Author: Filippos Karapetis (md5 at scummvm.org)
Date: 2012-05-21T01:41:15-07:00

Commit Message:
DREAMWEB: Fix bug #3528160 - "DREAMWEB: graphical glitch on UKV CD version loading screen"

Changed paths:
    engines/dreamweb/detection_tables.h
    engines/dreamweb/saveload.cpp



diff --git a/engines/dreamweb/detection_tables.h b/engines/dreamweb/detection_tables.h
index 70c42ee..063aabb 100644
--- a/engines/dreamweb/detection_tables.h
+++ b/engines/dreamweb/detection_tables.h
@@ -82,7 +82,7 @@ static const DreamWebGameDescription gameDescriptions[] = {
 				{"dreamweb.exe", 0, "dd1c7793b151489e67b83cd1ecab51cd", -1},
 				AD_LISTEND
 			},
-			Common::EN_ANY,
+			Common::EN_GRB,
 			Common::kPlatformPC,
 			ADGF_CD | ADGF_TESTING,
 			GUIO2(GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_BRIGHTPALETTE)
@@ -101,7 +101,7 @@ static const DreamWebGameDescription gameDescriptions[] = {
 			},
 			Common::EN_USA,
 			Common::kPlatformPC,
-			ADGF_CD,
+			ADGF_CD | ADGF_TESTING,
 			GUIO2(GAMEOPTION_ORIGINAL_SAVELOAD, GAMEOPTION_BRIGHTPALETTE)
 		},
 	},
diff --git a/engines/dreamweb/saveload.cpp b/engines/dreamweb/saveload.cpp
index 5d7f02c..d30bf75 100644
--- a/engines/dreamweb/saveload.cpp
+++ b/engines/dreamweb/saveload.cpp
@@ -839,8 +839,9 @@ void DreamWebEngine::showOpBox() {
 
 	// This call displays half of the ops dialog in the CD version. It's not
 	// in the floppy version, and if it's called, a stray red dot is shown in
-	// the game dialogs.
-	if (isCD())
+	// the game dialogs. It is included in the early UK CD release, which had
+	// similar data files as the floppy release (bug #3528160).
+	if (isCD() && getLanguage() != Common::EN_GRB)
 		showFrame(_saveGraphics, kOpsx, kOpsy + 55, 4, 0);
 }
 






More information about the Scummvm-git-logs mailing list