aboutsummaryrefslogtreecommitdiff
path: root/engines/saga
diff options
context:
space:
mode:
authorMax Horn2006-02-18 00:12:36 +0000
committerMax Horn2006-02-18 00:12:36 +0000
commit81798556dbd38fb829557cbe6a04132cc5edf75c (patch)
treed2925b35cfc31dfaadd8e7cc3f98c5299d91f964 /engines/saga
parentd13950dab2d5c0465f823e20fc8ab26b72b89ecc (diff)
downloadscummvm-rg350-81798556dbd38fb829557cbe6a04132cc5edf75c.tar.gz
scummvm-rg350-81798556dbd38fb829557cbe6a04132cc5edf75c.tar.bz2
scummvm-rg350-81798556dbd38fb829557cbe6a04132cc5edf75c.zip
- Removed the 'features' field from GameSettings
- Removed GF_DEFAULT_TO_1X_SCALER svn-id: r20747
Diffstat (limited to 'engines/saga')
-rw-r--r--engines/saga/game.cpp12
-rw-r--r--engines/saga/saga.cpp6
-rw-r--r--engines/saga/saga.h2
3 files changed, 10 insertions, 10 deletions
diff --git a/engines/saga/game.cpp b/engines/saga/game.cpp
index 86526fe267..5a6ffd88b9 100644
--- a/engines/saga/game.cpp
+++ b/engines/saga/game.cpp
@@ -1417,7 +1417,7 @@ static GameDescription gameDescriptions[] = {
NULL,
0,
NULL,
- GF_DEFAULT_TO_1X_SCALER,
+ 0,
Common::EN_USA,
Common::kPlatformPC,
},
@@ -1440,7 +1440,7 @@ static GameDescription gameDescriptions[] = {
NULL,
0,
NULL,
- GF_DEFAULT_TO_1X_SCALER,
+ 0,
Common::EN_USA,
Common::kPlatformPC,
},
@@ -1463,7 +1463,7 @@ static GameDescription gameDescriptions[] = {
NULL,
0,
NULL,
- GF_DEFAULT_TO_1X_SCALER,
+ 0,
Common::DE_DEU,
Common::kPlatformPC,
},
@@ -1485,7 +1485,7 @@ static GameDescription gameDescriptions[] = {
NULL,
0,
NULL,
- GF_DEFAULT_TO_1X_SCALER,
+ 0,
Common::ES_ESP,
Common::kPlatformPC,
},
@@ -1507,7 +1507,7 @@ static GameDescription gameDescriptions[] = {
NULL,
0,
NULL,
- GF_DEFAULT_TO_1X_SCALER,
+ 0,
Common::RU_RUS,
Common::kPlatformPC,
},
@@ -1529,7 +1529,7 @@ static GameDescription gameDescriptions[] = {
NULL,
0,
NULL,
- GF_DEFAULT_TO_1X_SCALER,
+ 0,
Common::FR_FRA,
Common::kPlatformPC,
},
diff --git a/engines/saga/saga.cpp b/engines/saga/saga.cpp
index 70d4f2bf71..45c12f616d 100644
--- a/engines/saga/saga.cpp
+++ b/engines/saga/saga.cpp
@@ -57,9 +57,9 @@
#include "saga/resnames.h"
static const GameSettings saga_games[] = {
- {"ite", "Inherit the Earth", 0},
- {"ihnm", "I Have No Mouth and I Must Scream", GF_DEFAULT_TO_1X_SCALER },
- {0, 0, 0}
+ {"ite", "Inherit the Earth"},
+ {"ihnm", "I Have No Mouth and I Must Scream"},
+ {0, 0}
};
GameList Engine_SAGA_gameList() {
diff --git a/engines/saga/saga.h b/engines/saga/saga.h
index f2111265bd..2e2c1358f0 100644
--- a/engines/saga/saga.h
+++ b/engines/saga/saga.h
@@ -518,7 +518,7 @@ struct GameDescription {
Common::Platform platform;
GameSettings toGameSettings() const {
- GameSettings dummy = { name, title, features };
+ GameSettings dummy = { name, title };
return dummy;
}
};