Skip to content

Commit

Permalink
DREAMWEB: Fix bug #3528160 - "DREAMWEB: graphical glitch on UKV CD ve…
Browse files Browse the repository at this point in the history
…rsion loading screen"
  • Loading branch information
bluegr committed May 21, 2012
1 parent 92b907e commit b678dca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions engines/dreamweb/detection_tables.h
Expand Up @@ -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)
Expand All @@ -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)
},
},
Expand Down
5 changes: 3 additions & 2 deletions engines/dreamweb/saveload.cpp
Expand Up @@ -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);
}

Expand Down

0 comments on commit b678dca

Please sign in to comment.