[Scummvm-git-logs] scummvm master -> 663ea06fced75c53dd1bbe229ad8d47e6cb9cb14
sluicebox
noreply at scummvm.org
Wed Jan 24 20:49:31 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
663ea06fce AGI: Fix Mixed-Up Mother Goose Amiga emulated version
Commit: 663ea06fced75c53dd1bbe229ad8d47e6cb9cb14
https://github.com/scummvm/scummvm/commit/663ea06fced75c53dd1bbe229ad8d47e6cb9cb14
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2024-01-24T12:48:51-08:00
Commit Message:
AGI: Fix Mixed-Up Mother Goose Amiga emulated version
Fixes the wrong graphics in the opening credits and throughout
the game. Fixes using the mouse to walk to room edges.
Changed paths:
engines/agi/agi.h
engines/agi/detection_tables.h
diff --git a/engines/agi/agi.h b/engines/agi/agi.h
index fb0e32767a3..3f3aa6426a3 100644
--- a/engines/agi/agi.h
+++ b/engines/agi/agi.h
@@ -294,6 +294,7 @@ enum AgiMonitorType {
* 2.202 (Space Quest II v2.0F)
* 2.310 (Police Quest I v2.0B 1989-02-22)
* 2.316 (Gold Rush! v2.05 1989-03-09)
+ * 2.328 (Mixed-Up Mother Mother Goose v1.1)
* 2.333 (King's Quest III v2.15 1989-11-15)
*
* At least these Amiga AGI versions use value 20:
diff --git a/engines/agi/detection_tables.h b/engines/agi/detection_tables.h
index f5b746c5682..207c39e98a3 100644
--- a/engines/agi/detection_tables.h
+++ b/engines/agi/detection_tables.h
@@ -422,7 +422,7 @@ static const AGIGameDescription gameDescriptions[] = {
// King's Quest 2 (IIgs) 2.0A 6/16/88 (CE)
GAME_PO("kq2", "2.0A 1988-06-16 (CE)", "5203c8b95250a2ecfee93ddb99414753", 0x2917, GID_KQ2, Common::kPlatformApple2GS, GAMEOPTIONS_APPLE2GS),
- // King's Quest 2 (Amiga) 2.0J
+ // King's Quest 2 (Amiga) 2.0J # 2.107
GAME_PO("kq2", "2.0J 1987-01-29", "b866f0fab2fad91433a637a828cfa410", 0x2440, GID_KQ2, Common::kPlatformAmiga, GAMEOPTIONS_AMIGA),
// King's Quest 2 (Mac) 2.0R 3/23/88
@@ -613,7 +613,7 @@ static const AGIGameDescription gameDescriptions[] = {
// Manhunter NY (IIgs) 2.0E 10/05/88 (CE)
GAME3_P("mh1", "2.0E 1988-10-05 (CE)", "mhdir", "2f1509f76f24e6e7d213f2dadebbf156", 0x3149, 0, GID_MH1, Common::kPlatformApple2GS),
- // Manhunter NY (Amiga) 1.06 3/18/89
+ // Manhunter NY (Amiga) 1.06 3/18/89 # 2.328
GAME3_PO("mh1", "1.06 1989-03-18", "dirs", "92c6183042d1c2bb76236236a7d7a847", 0x3149, GF_OLDAMIGAV20, GID_MH1, Common::kPlatformAmiga, GAMEOPTIONS_AMIGA),
// reported by Filippos (thebluegr) in bugreport #3048
@@ -691,10 +691,9 @@ static const AGIGameDescription gameDescriptions[] = {
GAMEpre_P("mickey", "", "1.pic", "b6ec04c91a05df374792872c4d4ce66d", 2489,
"OBJ/FLASHLIT.OOO", "d60a7b6ff96720037f7e88863f48c5d4", 97, 0x0000, GID_MICKEY, Common::kPlatformDOS),
- // Mixed-Up Mother Goose (Amiga) 1.1
- // Problematic: crashes
- // Menus not tested
- GAME3_PSO("mixedup", "1.1 1986-12-10", "dirs", "5c1295fe6daaf95831195ba12894dbd9", 2021, 0x3086, 0, GID_MIXEDUP, Common::kPlatformAmiga, GAMEOPTIONS_AMIGA),
+ // Mixed-Up Mother Goose (Amiga) 1.1 # 2.328
+ // Files are timestamped 1986-12-10, but this is a 1989 AGI 3 interpreter.
+ GAME3_PSO("mixedup", "1.1", "dirs", "5c1295fe6daaf95831195ba12894dbd9", 2021, 0x3149, 0, GID_MIXEDUP, Common::kPlatformAmiga, GAMEOPTIONS_AMIGA),
// Mixed Up Mother Goose (IIgs)
GAME_PO("mixedup", "1987", "3541954a7303467c6df87665312ffb6a", 0x2917, GID_MIXEDUP, Common::kPlatformApple2GS, GAMEOPTIONS_APPLE2GS),
More information about the Scummvm-git-logs
mailing list