diff options
| -rw-r--r-- | scumm/scumm.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp index e8869fed46..6ec7b7cb13 100644 --- a/scumm/scumm.cpp +++ b/scumm/scumm.cpp @@ -226,7 +226,8 @@ static const ScummGameSettings scumm_settings[] = {  	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0},  	{"jungle", "Let's Explore the Jungle with Buzzy", GID_HEGAME, 6, 70, MDT_NONE,  	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0}, -	{"puttzoo", "Putt-Putt Saves the Zoo", GID_HEGAME, 6, 70, MDT_NONE, +	/* needs the MAXS reading code for >= 72 but is still 320x200? */ +	{"puttzoo", "Putt-Putt Saves the Zoo", GID_HEGAME, 6, 72, MDT_NONE,  	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES, 0},  	// First 640x480 game, hence version 7.1 @@ -294,6 +295,8 @@ static const ScummGameSettings scumm_settings[] = {  	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES | GF_WINDOWS, 0},  	{"puttrace", "Putt-Putt Enters the Race", GID_HEGAME, 6, 72, MDT_NONE,  	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES | GF_WINDOWS, 0}, +	{"bluesabctimedemo", "Blue's ABC Time Demo", GID_HEGAME, 6, 72, MDT_NONE, +	 GF_NEW_OPCODES | GF_USE_KEY | GF_HUMONGOUS | GF_NEW_COSTUMES | GF_WINDOWS, 0},  	// Humongous Entertainment Scumm Version 9.9 ?  Scummsys.99  	{"sf2-demo", "Spyfox 2: Some Assembly Required (Demo)", GID_HEGAME, 6, 72, MDT_NONE,  | 
