diff options
author | Travis Howell | 2006-10-04 11:17:00 +0000 |
---|---|---|
committer | Travis Howell | 2006-10-04 11:17:00 +0000 |
commit | 7cfbf8b3e4c032b60a48285d7ba5495e6d9360fd (patch) | |
tree | 5d97f72d5f514d0820c50ec89f81c0deb53a6909 | |
parent | 2d016704f89f99ffb40c8ad0c006f3eccad87c53 (diff) | |
download | scummvm-rg350-7cfbf8b3e4c032b60a48285d7ba5495e6d9360fd.tar.gz scummvm-rg350-7cfbf8b3e4c032b60a48285d7ba5495e6d9360fd.tar.bz2 scummvm-rg350-7cfbf8b3e4c032b60a48285d7ba5495e6d9360fd.zip |
Add French version of Elvira 2
svn-id: r24109
-rw-r--r-- | engines/agos/agos.cpp | 2 | ||||
-rw-r--r-- | engines/agos/game.cpp | 23 |
2 files changed, 24 insertions, 1 deletions
diff --git a/engines/agos/agos.cpp b/engines/agos/agos.cpp index 51878b81b9..1ddc39002f 100644 --- a/engines/agos/agos.cpp +++ b/engines/agos/agos.cpp @@ -622,7 +622,7 @@ void AGOSEngine::setupGame() { #endif _tableMemSize = 50000; _vgaBaseDelay = 1; - _numVars = 254; + _numVars = 255; } else if (getGameType() == GType_ELVIRA) { gss = PTR(simon1_settings); _numTextBoxes = 20; diff --git a/engines/agos/game.cpp b/engines/agos/game.cpp index d558685d4f..9abbde7c9f 100644 --- a/engines/agos/game.cpp +++ b/engines/agos/game.cpp @@ -182,6 +182,13 @@ static ADGameFileDescription ELVIRA1DOS2_GameFiles[] = { }; static ADGameFileDescription ELVIRA2DOS_GameFiles[] = { + { "gamepc", GAME_BASEFILE, "3313254722031b22d833a2cf45a91fd7"}, + { "icon.dat", GAME_ICONFILE, "83a7278bff55c82fbb3aef92981866c9"}, + { "stripped.txt", GAME_STRFILE, "c2533277b7ff11f5495967d55355ea17"}, + { "tbllist", GAME_TBLFILE, "8252660df0edbdbc3e6377e155bbd0c5"}, +}; + +static ADGameFileDescription ELVIRA2DOS_FR_GameFiles[] = { { "gamepc", GAME_BASEFILE, "4bf28ab00f5324fd938e632595742382"}, { "icon.dat", GAME_ICONFILE, "83a7278bff55c82fbb3aef92981866c9"}, { "stripped.txt", GAME_STRFILE, "c3a8f644551a27c8a2fec0f8070b46b7"}, @@ -689,6 +696,22 @@ static AGOSGameDescription gameDescriptions[] = { GF_OLD_BUNDLE, }, + // Elvira 2 - French Floppy + { + { + "elvira2", + "Floppy", + ARRAYSIZE(ELVIRA2DOS_FR_GameFiles), + ELVIRA2DOS_FR_GameFiles, + Common::EN_ANY, + Common::kPlatformPC, + }, + + GType_ELVIRA2, + GID_ELVIRA2, + GF_OLD_BUNDLE, + }, + // Waxworks - English Floppy { { |