diff options
author | Paul Gilbert | 2008-01-17 09:05:56 +0000 |
---|---|---|
committer | Paul Gilbert | 2008-01-17 09:05:56 +0000 |
commit | 00ecb126e3bb9ec83935a2b07eb423a31dfaa46e (patch) | |
tree | db6ea31a75ae59a89b8b8ddf7be2baae36631d72 | |
parent | 2ef04f972c6e77ad6ab7f5d8008895e39fda9c88 (diff) | |
download | scummvm-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
-rw-r--r-- | engines/lure/surface.cpp | 3 |
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 = ©ProtectElements[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); |