diff options
author | Paul Gilbert | 2007-11-28 10:37:40 +0000 |
---|---|---|
committer | Paul Gilbert | 2007-11-28 10:37:40 +0000 |
commit | 4e3090377f8f6043fdcb99b8c10f96100e31fb85 (patch) | |
tree | ad7573250a04face8b3021ff4bb6a028072a50fa /engines | |
parent | 44ac9cb7ae66657fc1cea26811dd247c6e53a4f7 (diff) | |
download | scummvm-rg350-4e3090377f8f6043fdcb99b8c10f96100e31fb85.tar.gz scummvm-rg350-4e3090377f8f6043fdcb99b8c10f96100e31fb85.tar.bz2 scummvm-rg350-4e3090377f8f6043fdcb99b8c10f96100e31fb85.zip |
Added detection of Spanish version
svn-id: r29654
Diffstat (limited to 'engines')
-rw-r--r-- | engines/lure/detection.cpp | 2 | ||||
-rw-r--r-- | engines/lure/menu.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp index 406f80288e..83c72b13fa 100644 --- a/engines/lure/detection.cpp +++ b/engines/lure/detection.cpp @@ -61,6 +61,8 @@ static const GameSettings lure_games[] = { "7aa19e444dab1ac7194d9f7a40ffe54a", "disk1.vga" }, { "lure", "Lure of the Temptress", GI_LURE, GF_FLOPPY, Common::FR_FRA, "1c94475c1bb7e0e88c1757d3b5377e94", "disk1.vga" }, + { "lure", "Lure of the Temptress", GI_LURE, GF_FLOPPY, Common::ES_ESP, + "1751145b653959f7a64fe1618d6b97ac", "disk1.vga" }, { 0, 0, 0, 0, Common::UNK_LANG, 0, 0 } }; diff --git a/engines/lure/menu.cpp b/engines/lure/menu.cpp index fb5b691e1d..33de3a1285 100644 --- a/engines/lure/menu.cpp +++ b/engines/lure/menu.cpp @@ -63,11 +63,11 @@ const char *MenuRecord::getEntry(uint8 index) { static Menu *int_menu = NULL; const MenuRecordLanguage menuList[] = { -// {EN_ANY, {{40, 87, 20, 80}, {127, 179, 100, 120}, {224, 281, 210, 105}}}, {EN_ANY, {{40, 87, 3, 7}, {127, 179, 13, 12}, {224, 281, 27, 10}}}, {IT_ITA, {{40, 98, 4, 6}, {120, 195, 14, 11}, {208, 281, 24, 13}}}, {FR_FRA, {{40, 90, 3, 7}, {120, 195, 13, 11}, {232, 273, 23, 13}}}, {DE_DEU, {{44, 95, 1, 11}, {135, 178, 8, 23}, {232, 273, 22, 15}}}, + {ES_ESP, {{40, 90, 3, 8}, {120, 195, 11, 13}, {208, 281, 17, 18}}}, {UNK_LANG, {{0, 0, 0, 0}, {0, 0, 0, 0}, {0, 0, 0, 0}}} }; |