diff options
author | Travis Howell | 2009-05-01 05:39:06 +0000 |
---|---|---|
committer | Travis Howell | 2009-05-01 05:39:06 +0000 |
commit | 385bf15b513c512c417552fdcddd58f126695fcd (patch) | |
tree | 1277bfa8a66ae7be8b2653fc8fdd4e87a440d452 /engines | |
parent | afc0052c435871ec8d9cd70550bd920431c6ad10 (diff) | |
download | scummvm-rg350-385bf15b513c512c417552fdcddd58f126695fcd.tar.gz scummvm-rg350-385bf15b513c512c417552fdcddd58f126695fcd.tar.bz2 scummvm-rg350-385bf15b513c512c417552fdcddd58f126695fcd.zip |
Fix regression in the PC version of PN.
svn-id: r40223
Diffstat (limited to 'engines')
-rw-r--r-- | engines/agos/detection_tables.h | 16 | ||||
-rw-r--r-- | engines/agos/intern.h | 3 |
2 files changed, 10 insertions, 9 deletions
diff --git a/engines/agos/detection_tables.h b/engines/agos/detection_tables.h index 96f2f2698f..92eebf88b1 100644 --- a/engines/agos/detection_tables.h +++ b/engines/agos/detection_tables.h @@ -55,9 +55,9 @@ static const AGOSGameDescription gameDescriptions[] = { "Demo", { - { "01.IN", 0, "23a4c8c4c9ac460fee7281080b5274e3", 756}, - { "02.IN", 0, "31be87808826538f0c0caebd5fedd48f", 73100}, - { "03.IN", 0, "0e125f3df4e4b800936ebdcc8dc96060", 101664}, + { "01.IN", GAME_VGAFILE, "23a4c8c4c9ac460fee7281080b5274e3", 756}, + { "02.IN", GAME_VGAFILE, "31be87808826538f0c0caebd5fedd48f", 73100}, + { "03.IN", GAME_VGAFILE, "0e125f3df4e4b800936ebdcc8dc96060", 101664}, { NULL, 0, NULL, 0} }, Common::EN_ANY, @@ -99,7 +99,7 @@ static const AGOSGameDescription gameDescriptions[] = { "Floppy", { - { "01.out", 0, "3a2a4c3e07dfbc4b309deade0af37baf", -1}, + { "01.out", GAME_VGAFILE, "3a2a4c3e07dfbc4b309deade0af37baf", -1}, { "icon.out", GAME_ICONFILE, "40d8347c3154bfa8b642d6860a4b9481", -1}, { "night.dbm", GAME_BASEFILE, "177311ae059243f6a2740e950585d786", -1}, { "night.txt", GAME_TEXTFILE, "861fc1fa0864eef585f5865dee52e325", -1}, @@ -122,7 +122,7 @@ static const AGOSGameDescription gameDescriptions[] = { "Floppy", { - { "01.out", 0, "7f3e2a7a3aad016ad1bf540fcbe031ca", -1}, + { "01.out", GAME_VGAFILE, "7f3e2a7a3aad016ad1bf540fcbe031ca", -1}, { "icon.out", GAME_ICONFILE, "40d8347c3154bfa8b642d6860a4b9481", -1}, { "night.dbm", GAME_BASEFILE, "177311ae059243f6a2740e950585d786", -1}, { "night.txt", GAME_TEXTFILE, "861fc1fa0864eef585f5865dee52e325", -1}, @@ -227,9 +227,9 @@ static const AGOSGameDescription gameDescriptions[] = { "Demo", { - { "991.out", 0, "9238242d3274bb770cb4925d2b268f83", 1822}, - { "992.out", 0, "5526cd64e515f1c5f9ff8f2fb569c4eb", 192236}, - { "993.out", 0, "d41d8cd98f00b204e9800998ecf8427e", 0}, + { "991.out", GAME_VGAFILE, "9238242d3274bb770cb4925d2b268f83", 1822}, + { "992.out", GAME_VGAFILE, "5526cd64e515f1c5f9ff8f2fb569c4eb", 192236}, + { "993.out", GAME_VGAFILE, "d41d8cd98f00b204e9800998ecf8427e", 0}, { NULL, 0, NULL, 0} }, Common::EN_ANY, diff --git a/engines/agos/intern.h b/engines/agos/intern.h index a2b88e9f4a..2f5fc6278f 100644 --- a/engines/agos/intern.h +++ b/engines/agos/intern.h @@ -269,8 +269,9 @@ enum GameFileTypes { GAME_XTBLFILE = 1 << 8, GAME_RESTFILE = 1 << 9, GAME_TEXTFILE = 1 << 10, + GAME_VGAFILE = 1 << 11, - GAME_GFXIDXFILE = 1 << 11 + GAME_GFXIDXFILE = 1 << 12 }; enum GameIds { |