Added CoCo3 version of SQ1

svn-id: r41284
This commit is contained in:
Eugene Sandulenko 2009-06-06 18:22:43 +00:00
parent 79d082f9c2
commit a0fa307fc5
3 changed files with 5 additions and 0 deletions

View File

@ -259,6 +259,7 @@ const PlatformDescription g_platforms[] = {
{"pc", "dos", "ibm", "DOS", kPlatformPC},
{"pc98", "pc98", "pc98", "PC-98", kPlatformPC98},
{"wii", "wii", "wii", "Nintendo Wii", kPlatformWii},
{"coco3", "coco3", "coco3", "CoCo3", kPlatformCoCo3},
// The 'official' spelling seems to be "FM-TOWNS" (e.g. in the Indy4 demo).
// However, on the net many variations can be seen, like "FMTOWNS",

View File

@ -205,6 +205,7 @@ enum Platform {
kPlatformWindows,
kPlatformNES,
kPlatformC64,
kPlatformCoCo3,
kPlatformLinux,
kPlatformAcorn,
kPlatformSegaCD,

View File

@ -499,6 +499,9 @@ static const AGIGameDescription gameDescriptions[] = {
// Space Quest 1 (PC 5.25"/3.5") 2.2 [AGI 2.426/2.917]
GAME("sq1", "2.2 1987-05-07 5.25\"/3.5\"", "5d67630aba008ec5f7f9a6d0a00582f4", 0x2440, GID_SQ1),
// Space Quest 1 (CoCo3)
GAME_P("sq1", "", "5d67630aba008ec5f7f9a6d0a00582f4", 0x2440, GID_SQ1, Common::kPlatformCoCo3),
// Space Quest 2 (PC 3.5") 2.0D [AGI 2.936]
GAME("sq2", "2.0D 1988-03-14 3.5\"", "85390bde8958c39830e1adbe9fff87f3", 0x2936, GID_SQ2),