aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/res.cpp
diff options
context:
space:
mode:
authorTravis Howell2007-02-12 00:14:14 +0000
committerTravis Howell2007-02-12 00:14:14 +0000
commitd4a206ec126677a2665b1c12630af1895fc26848 (patch)
treef73beff081963108a3876a2592a8355e71c48152 /engines/agos/res.cpp
parent3bc06610659079e9320e4a0835af103a2fab11a5 (diff)
downloadscummvm-rg350-d4a206ec126677a2665b1c12630af1895fc26848.tar.gz
scummvm-rg350-d4a206ec126677a2665b1c12630af1895fc26848.tar.bz2
scummvm-rg350-d4a206ec126677a2665b1c12630af1895fc26848.zip
Add basic support for AtariST demo of Elvira 1.
svn-id: r25501
Diffstat (limited to 'engines/agos/res.cpp')
-rw-r--r--engines/agos/res.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/agos/res.cpp b/engines/agos/res.cpp
index 559407e98a..4b227b6100 100644
--- a/engines/agos/res.cpp
+++ b/engines/agos/res.cpp
@@ -680,9 +680,9 @@ void AGOSEngine::loadVGAVideoFile(uint id, uint type) {
if (getPlatform() == Common::kPlatformAcorn) {
sprintf(filename, "%.3d%d.DAT", id, type);
} else if (getPlatform() == Common::kPlatformAmiga || getPlatform() == Common::kPlatformAtariST) {
- if (getFeatures() & GF_TALKIE) {
- sprintf(filename, "%.3d%d.out", id, type);
- } else if (getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) {
+ //if (getFeatures() & GF_TALKIE) {
+ sprintf(filename, "%.2d%d.out", id, type);
+ /* } else if (getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) {
if (id == 20)
sprintf(filename, "D%d.out", type);
else if (id == 26)
@@ -699,7 +699,7 @@ void AGOSEngine::loadVGAVideoFile(uint id, uint type) {
sprintf(filename, "%.2d%d.pkd", id, type);
} else {
sprintf(filename, "%.3d%d.pkd", id, type);
- }
+ } */
} else {
if (getGameType() == GType_ELVIRA1 || getGameType() == GType_ELVIRA2 || getGameType() == GType_WW) {
sprintf(filename, "%.2d%d.VGA", id, type);