[Scummvm-cvs-logs] SF.net SVN: scummvm: [23261] scummvm/trunk/engines/simon
kirben at users.sourceforge.net
kirben at users.sourceforge.net
Fri Jun 23 12:03:38 CEST 2006
Revision: 23261
Author: kirben
Date: 2006-06-23 03:03:30 -0700 (Fri, 23 Jun 2006)
ViewCVS: http://svn.sourceforge.net/scummvm/?rev=23261&view=rev
Log Message:
-----------
Add Spanish version of the Feebles Files (4CD)
Modified Paths:
--------------
scummvm/trunk/engines/simon/game.cpp
scummvm/trunk/engines/simon/intern.h
Modified: scummvm/trunk/engines/simon/game.cpp
===================================================================
--- scummvm/trunk/engines/simon/game.cpp 2006-06-22 17:57:37 UTC (rev 23260)
+++ scummvm/trunk/engines/simon/game.cpp 2006-06-23 10:03:30 UTC (rev 23261)
@@ -517,7 +517,7 @@
{ "tbllist", GAME_TBLFILE, "0bbfee8e69739111eb36b0d138da8ddf"},
};
-static GameFileDescription FEEBLEFILES_MAC_SP_GameFiles[] = {
+static GameFileDescription FEEBLEFILES_MAC_ES_GameFiles[] = {
{ "game22", GAME_BASEFILE, "71d7d2d5e479b053c5a9757f1702c9c3"},
{ "graphics.vga", GAME_GFXIDXFILE,"11a4853cb35956846976e9473ee0e41e"},
{ "tbllist", GAME_TBLFILE, "0bbfee8e69739111eb36b0d138da8ddf"},
@@ -544,6 +544,11 @@
{ "tbllist", GAME_TBLFILE, "0bbfee8e69739111eb36b0d138da8ddf"},
};
+static GameFileDescription FEEBLEFILES_ES_GameFiles[] = {
+ { "game22", GAME_BASEFILE, "71d7d2d5e479b053c5a9757f1702c9c3"},
+ { "tbllist", GAME_TBLFILE, "0bbfee8e69739111eb36b0d138da8ddf"},
+};
+
static GameDescription gameDescriptions[] = {
// Simon the Sorcerer 1 - English Acorn CD Demo
{
@@ -1214,10 +1219,10 @@
{
"feeble",
GType_FF,
- GID_FEEBLEFILES_MAC_SP,
+ GID_FEEBLEFILES_MAC_ES,
"CD",
- ARRAYSIZE(FEEBLEFILES_MAC_SP_GameFiles),
- FEEBLEFILES_MAC_SP_GameFiles,
+ ARRAYSIZE(FEEBLEFILES_MAC_ES_GameFiles),
+ FEEBLEFILES_MAC_ES_GameFiles,
GF_OLD_BUNDLE | GF_ZLIBCOMP | GF_TALKIE,
Common::ES_ESP,
Common::kPlatformMacintosh,
@@ -1261,6 +1266,20 @@
Common::DE_DEU,
Common::kPlatformWindows,
},
+
+ // The Feeble Files - Spanish Windows 4CD
+ {
+ "feeble",
+ GType_FF,
+ GID_FEEBLEFILES_MAC_ES,
+ "4CD",
+ ARRAYSIZE(FEEBLEFILES_ES_GameFiles),
+ FEEBLEFILES_ES_GameFiles,
+ GF_OLD_BUNDLE | GF_TALKIE,
+ Common::ES_ESP,
+ Common::kPlatformWindows,
+ },
+
};
DetectedGame toDetectedGame(const GameDescription &g) {
Modified: scummvm/trunk/engines/simon/intern.h
===================================================================
--- scummvm/trunk/engines/simon/intern.h 2006-06-22 17:57:37 UTC (rev 23260)
+++ scummvm/trunk/engines/simon/intern.h 2006-06-23 10:03:30 UTC (rev 23261)
@@ -223,11 +223,12 @@
GID_FEEBLEFILES_AMI_UK,
GID_FEEBLEFILES_MAC_DE,
GID_FEEBLEFILES_MAC_FR,
- GID_FEEBLEFILES_MAC_SP,
+ GID_FEEBLEFILES_MAC_ES,
GID_FEEBLEFILES_MAC_UK,
GID_FEEBLEFILES_2CD,
GID_FEEBLEFILES_4CD,
- GID_FEEBLEFILES_DE
+ GID_FEEBLEFILES_DE,
+ GID_FEEBLEFILES_ES
};
} // End of namespace Simon
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list