diff options
| -rw-r--r-- | simon/game.cpp | 16 | ||||
| -rw-r--r-- | simon/intern.h | 3 | 
2 files changed, 18 insertions, 1 deletions
diff --git a/simon/game.cpp b/simon/game.cpp index 5f09f41cc4..6ccd472fc7 100644 --- a/simon/game.cpp +++ b/simon/game.cpp @@ -200,6 +200,9 @@ static GameMD5 gameMD5[] = {  	{ GID_FEEBLEFILES_4CD, "a8746407a5b20a7da0da0a14c380af1c", "game22", false },  	{ GID_FEEBLEFILES_4CD, "0bbfee8e69739111eb36b0d138da8ddf", "tbllist", false}, + +	{ GID_FEEBLEFILES_DE, "bcd76ac080003eee3649df18db25b60e", "game22", false }, +	{ GID_FEEBLEFILES_DE, "0bbfee8e69739111eb36b0d138da8ddf", "tbllist", false},  };  // Simon the Sorcerer 1 @@ -601,6 +604,19 @@ static GameDescription gameDescriptions[] = {  		Common::EN_USA,  		Common::kPlatformPC,  	}, + +	// The Feeble Files - German 4CD +	{ +		"feeble", +		GType_FF, +		GID_FEEBLEFILES_DE, +		"The Feeble Files (De)", +		ARRAYSIZE(FEEBLEFILES_GameFiles), +		FEEBLEFILES_GameFiles, +		GF_OLD_BUNDLE | GF_TALKIE, +		Common::DE_DEU, +		Common::kPlatformPC, +	},  };  bool SimonEngine::initGame(void) { diff --git a/simon/intern.h b/simon/intern.h index 0ef12e8967..4e62d69544 100644 --- a/simon/intern.h +++ b/simon/intern.h @@ -191,7 +191,8 @@ enum GameIds {  	GID_SIMON2WIN_DE,  	GID_FEEBLEFILES_2CD, -	GID_FEEBLEFILES_4CD +	GID_FEEBLEFILES_4CD, +	GID_FEEBLEFILES_DE  };  #endif  | 
