diff options
author | Travis Howell | 2005-11-21 08:35:11 +0000 |
---|---|---|
committer | Travis Howell | 2005-11-21 08:35:11 +0000 |
commit | 92d377d5d1006b1b5409b32c8a6b3552842c1138 (patch) | |
tree | ca149db37b7f69fa10837939fe02ee5e101de732 | |
parent | 47788dee252ad9072b8061cbffda85e661974438 (diff) | |
download | scummvm-rg350-92d377d5d1006b1b5409b32c8a6b3552842c1138.tar.gz scummvm-rg350-92d377d5d1006b1b5409b32c8a6b3552842c1138.tar.bz2 scummvm-rg350-92d377d5d1006b1b5409b32c8a6b3552842c1138.zip |
Add German version of Simon the Sorcerer 1 (DOS Floppy).
svn-id: r19681
-rw-r--r-- | simon/game.cpp | 18 | ||||
-rw-r--r-- | simon/intern.h | 1 |
2 files changed, 19 insertions, 0 deletions
diff --git a/simon/game.cpp b/simon/game.cpp index a2daa8b8f7..b4cde8f3a5 100644 --- a/simon/game.cpp +++ b/simon/game.cpp @@ -86,6 +86,11 @@ static GameMD5 gameMD5[] = { { GID_SIMON1DOS, "2af9affc5981eec44b90d4c556145cb8", "stripped.txt", false}, { GID_SIMON1DOS, "d198a80de2c59e4a0cd24b98814849e8", "tbllist", false}, + { GID_SIMON1DOS_DE, "063015e6ce7d90b570dbc21fe0c667b1 ", "gamepc", false }, + { GID_SIMON1DOS_DE, "22107c24dfb31b66ac503c28a6e20b19 ", "icon.dat", false}, + { GID_SIMON1DOS_DE, "c95a0a1ee973e19c2a1c5d12026c139f ", "stripped.txt", false}, + { GID_SIMON1DOS_DE, "d198a80de2c59e4a0cd24b98814849e8 ", "tbllist", false}, + { GID_SIMON1DOS_RU, "605fb866e03ec1c41b10c6a518ddfa49", "gamepc", false }, { GID_SIMON1DOS_RU, "22107c24dfb31b66ac503c28a6e20b19", "icon.dat", false}, { GID_SIMON1DOS_RU, "2af9affc5981eec44b90d4c556145cb8", "stripped.txt", false}, @@ -411,6 +416,19 @@ static GameDescription gameDescriptions[] = { Common::kPlatformPC, }, + // Simon the Sorcerer 1 - German DOS Floppy + { + "simon1", + GType_SIMON1, + GID_SIMON1DOS_DE, + "Simon the Sorcerer 1 (De DOS Floppy)", + ARRAYSIZE(SIMON1DOS_GameFiles), + SIMON1DOS_GameFiles, + GF_OLD_BUNDLE, + Common::DE_DEU, + Common::kPlatformPC, + }, + // Simon the Sorcerer 1 - English DOS CD { "simon1", diff --git a/simon/intern.h b/simon/intern.h index 23aed12177..1575e33872 100644 --- a/simon/intern.h +++ b/simon/intern.h @@ -163,6 +163,7 @@ enum GameFileTypes { enum GameIds { GID_SIMON1DOS, + GID_SIMON1DOS_DE, GID_SIMON1DOS_RU, GID_SIMON1DEMO, GID_SIMON1AMIGA, |