aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2006-06-24 10:08:46 +0000
committerTravis Howell2006-06-24 10:08:46 +0000
commitbd3c24bce4f1ebbe56827c757615d7c0414df160 (patch)
tree85bc4e776c39ecb673697a988b5dc16953df3e51
parentaa8ed526f01fed98b014a85e1aa6022f3f2f86ad (diff)
downloadscummvm-rg350-bd3c24bce4f1ebbe56827c757615d7c0414df160.tar.gz
scummvm-rg350-bd3c24bce4f1ebbe56827c757615d7c0414df160.tar.bz2
scummvm-rg350-bd3c24bce4f1ebbe56827c757615d7c0414df160.zip
Add Italian version of the Feebles Files (4CD)
svn-id: r23281
-rw-r--r--engines/simon/game.cpp19
-rw-r--r--engines/simon/intern.h1
2 files changed, 19 insertions, 1 deletions
diff --git a/engines/simon/game.cpp b/engines/simon/game.cpp
index 48804d6495..33ceb6462f 100644
--- a/engines/simon/game.cpp
+++ b/engines/simon/game.cpp
@@ -543,6 +543,11 @@ static GameFileDescription FEEBLEFILES_DE_GameFiles[] = {
{ "tbllist", GAME_TBLFILE, "0bbfee8e69739111eb36b0d138da8ddf"},
};
+static GameFileDescription FEEBLEFILES_IT_GameFiles[] = {
+ { "game22", GAME_BASEFILE, "80576f2e1ed4c912b63921fe77af313e"},
+ { "tbllist", GAME_TBLFILE, "0bbfee8e69739111eb36b0d138da8ddf"},
+};
+
static GameFileDescription FEEBLEFILES_ES_GameFiles[] = {
{ "game22", GAME_BASEFILE, "71d7d2d5e479b053c5a9757f1702c9c3"},
{ "tbllist", GAME_TBLFILE, "0bbfee8e69739111eb36b0d138da8ddf"},
@@ -1266,6 +1271,19 @@ static GameDescription gameDescriptions[] = {
Common::kPlatformWindows,
},
+ // The Feeble Files - Italian Windows 4CD
+ {
+ "feeble",
+ GType_FF,
+ GID_FEEBLEFILES_IT,
+ "4CD",
+ ARRAYSIZE(FEEBLEFILES_IT_GameFiles),
+ FEEBLEFILES_IT_GameFiles,
+ GF_OLD_BUNDLE | GF_TALKIE,
+ Common::IT_ITA,
+ Common::kPlatformWindows,
+ },
+
// The Feeble Files - Spanish Windows 4CD
{
"feeble",
@@ -1278,7 +1296,6 @@ static GameDescription gameDescriptions[] = {
Common::ES_ESP,
Common::kPlatformWindows,
},
-
};
DetectedGame toDetectedGame(const GameDescription &g) {
diff --git a/engines/simon/intern.h b/engines/simon/intern.h
index d1f3fda52e..29bee72897 100644
--- a/engines/simon/intern.h
+++ b/engines/simon/intern.h
@@ -228,6 +228,7 @@ enum GameIds {
GID_FEEBLEFILES_2CD,
GID_FEEBLEFILES_4CD,
GID_FEEBLEFILES_DE,
+ GID_FEEBLEFILES_IT,
GID_FEEBLEFILES_ES
};