aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2008-01-17 09:05:56 +0000
committerPaul Gilbert2008-01-17 09:05:56 +0000
commit00ecb126e3bb9ec83935a2b07eb423a31dfaa46e (patch)
treedb6ea31a75ae59a89b8b8ddf7be2baae36631d72 /engines
parent2ef04f972c6e77ad6ab7f5d8008895e39fda9c88 (diff)
downloadscummvm-rg350-00ecb126e3bb9ec83935a2b07eb423a31dfaa46e.tar.gz
scummvm-rg350-00ecb126e3bb9ec83935a2b07eb423a31dfaa46e.tar.bz2
scummvm-rg350-00ecb126e3bb9ec83935a2b07eb423a31dfaa46e.zip
Bugfix for the position and size of the copy protection dialog instructions in the German version
svn-id: r30524
Diffstat (limited to 'engines')
-rw-r--r--engines/lure/surface.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/lure/surface.cpp b/engines/lure/surface.cpp
index 7186c9f108..a093142964 100644
--- a/engines/lure/surface.cpp
+++ b/engines/lure/surface.cpp
@@ -1255,7 +1255,7 @@ static const ItemDesc copyProtectElements[] = {
{EN_ANY, 57, 40, 208, 40, WORDING_HEADER, 32},
{FR_FRA, 57, 40, 208, 40, WORDING_HEADER, 32},
- {DE_DEU, 39, 40, 208, 40, WORDING_HEADER, 32},
+ {DE_DEU, 39, 30, 240, 53, WORDING_HEADER, 32},
{NL_NLD, 57, 40, 208, 40, WORDING_HEADER, 32},
{ES_ESP, 57, 40, 208, 40, WORDING_HEADER, 32},
{IT_ITA, 57, 40, 208, 40, WORDING_HEADER, 32},
@@ -1277,7 +1277,6 @@ CopyProtectionDialog::CopyProtectionDialog() {
const ItemDesc *ptr = &copyProtectElements[0];
while ((ptr->width != 0) || (ptr->height != 0)) {
if ((ptr->language == UNK_LANG) || (ptr->language == engine.getLanguage())) {
- if (ptr->animId == 0) break; //***DEBUG***
Hotspot *h = new Hotspot();
h->setPosition(ptr->x, ptr->y);
h->setSize(ptr->width, ptr->height);