aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilippos Karapetis2008-10-26 16:42:08 +0000
committerFilippos Karapetis2008-10-26 16:42:08 +0000
commitb7a219ebc6f6ffd4954a29ca4e14654ff702bed5 (patch)
treeb0acbedaebbefab40c0cb5593f1612f7587fb649
parent331c38e1c710c786d4526962d9940d4036d800d9 (diff)
downloadscummvm-rg350-b7a219ebc6f6ffd4954a29ca4e14654ff702bed5.tar.gz
scummvm-rg350-b7a219ebc6f6ffd4954a29ca4e14654ff702bed5.tar.bz2
scummvm-rg350-b7a219ebc6f6ffd4954a29ca4e14654ff702bed5.zip
Renamed engine feature kSupportsDirectLoad to kSupportsLoadingDuringStartup, as discussed in patch #2122869
svn-id: r34854
-rw-r--r--engines/agi/detection.cpp2
-rw-r--r--engines/cine/detection.cpp2
-rw-r--r--engines/kyra/detection.cpp2
-rw-r--r--engines/lure/detection.cpp2
-rw-r--r--engines/metaengine.h2
-rw-r--r--engines/parallaction/detection.cpp2
-rw-r--r--engines/queen/queen.cpp2
-rw-r--r--engines/saga/detection.cpp2
-rw-r--r--engines/scumm/detection.cpp2
-rw-r--r--engines/sky/sky.cpp2
-rw-r--r--engines/sword1/sword1.cpp2
-rw-r--r--engines/sword2/sword2.cpp2
-rw-r--r--engines/touche/detection.cpp2
-rw-r--r--gui/launcher.cpp2
14 files changed, 14 insertions, 14 deletions
diff --git a/engines/agi/detection.cpp b/engines/agi/detection.cpp
index 94cc4caf85..e82d4877e7 100644
--- a/engines/agi/detection.cpp
+++ b/engines/agi/detection.cpp
@@ -2134,7 +2134,7 @@ bool AgiMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave);
}
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp
index 97299d266c..f6aaede6b7 100644
--- a/engines/cine/detection.cpp
+++ b/engines/cine/detection.cpp
@@ -542,7 +542,7 @@ bool CineMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad);
+ (f == kSupportsLoadingDuringStartup);
}
bool CineMetaEngine::createInstance(OSystem *syst, Engine **engine, const Common::ADGameDescription *desc) const {
diff --git a/engines/kyra/detection.cpp b/engines/kyra/detection.cpp
index f39570367b..cc662d1b82 100644
--- a/engines/kyra/detection.cpp
+++ b/engines/kyra/detection.cpp
@@ -1075,7 +1075,7 @@ bool KyraMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave) ||
(f == kSavesSupportMetaInfo) ||
(f == kSavesSupportThumbnail);
diff --git a/engines/lure/detection.cpp b/engines/lure/detection.cpp
index 163d095243..7e74eee026 100644
--- a/engines/lure/detection.cpp
+++ b/engines/lure/detection.cpp
@@ -195,7 +195,7 @@ bool LureMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave);
}
diff --git a/engines/metaengine.h b/engines/metaengine.h
index 194acc94d7..077d5696b8 100644
--- a/engines/metaengine.h
+++ b/engines/metaengine.h
@@ -148,7 +148,7 @@ public:
/**
* Loading from the Launcher / command line (-x)
*/
- kSupportsDirectLoad,
+ kSupportsLoadingDuringStartup,
/**
* Deleting Saves from the Launcher (i.e. implements the
diff --git a/engines/parallaction/detection.cpp b/engines/parallaction/detection.cpp
index cbaa994e47..d219c0c00f 100644
--- a/engines/parallaction/detection.cpp
+++ b/engines/parallaction/detection.cpp
@@ -254,7 +254,7 @@ bool ParallactionMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave);
}
diff --git a/engines/queen/queen.cpp b/engines/queen/queen.cpp
index e242614ad9..40e7aa8b05 100644
--- a/engines/queen/queen.cpp
+++ b/engines/queen/queen.cpp
@@ -82,7 +82,7 @@ bool QueenMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave);
}
diff --git a/engines/saga/detection.cpp b/engines/saga/detection.cpp
index 57979ab008..eecff5f511 100644
--- a/engines/saga/detection.cpp
+++ b/engines/saga/detection.cpp
@@ -156,7 +156,7 @@ bool SagaMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave);
}
diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp
index abc3d5ec17..fd8ccc8955 100644
--- a/engines/scumm/detection.cpp
+++ b/engines/scumm/detection.cpp
@@ -693,7 +693,7 @@ bool ScummMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave) ||
(f == kSavesSupportMetaInfo) ||
(f == kSavesSupportThumbnail) ||
diff --git a/engines/sky/sky.cpp b/engines/sky/sky.cpp
index ac6773c80c..0f126450fb 100644
--- a/engines/sky/sky.cpp
+++ b/engines/sky/sky.cpp
@@ -132,7 +132,7 @@ bool SkyMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad);
+ (f == kSupportsLoadingDuringStartup);
}
GameList SkyMetaEngine::getSupportedGames() const {
diff --git a/engines/sword1/sword1.cpp b/engines/sword1/sword1.cpp
index 05bc3120f0..8cbd549c75 100644
--- a/engines/sword1/sword1.cpp
+++ b/engines/sword1/sword1.cpp
@@ -108,7 +108,7 @@ bool SwordMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad);
+ (f == kSupportsLoadingDuringStartup);
}
GameList SwordMetaEngine::getSupportedGames() const {
diff --git a/engines/sword2/sword2.cpp b/engines/sword2/sword2.cpp
index 73e7c49a0d..e0c95c7120 100644
--- a/engines/sword2/sword2.cpp
+++ b/engines/sword2/sword2.cpp
@@ -94,7 +94,7 @@ bool Sword2MetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave);
}
diff --git a/engines/touche/detection.cpp b/engines/touche/detection.cpp
index 72676fd930..dfcda985ab 100644
--- a/engines/touche/detection.cpp
+++ b/engines/touche/detection.cpp
@@ -147,7 +147,7 @@ bool ToucheMetaEngine::hasFeature(MetaEngineFeature f) const {
return
(f == kSupportsRTL) ||
(f == kSupportsListSaves) ||
- (f == kSupportsDirectLoad) ||
+ (f == kSupportsLoadingDuringStartup) ||
(f == kSupportsDeleteSave);
}
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index 2020694f79..41c3cec8fe 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -1117,7 +1117,7 @@ void LauncherDialog::loadGame(int item) {
if (plugin) {
if ((*plugin)->hasFeature(MetaEngine::kSupportsListSaves) &&
- (*plugin)->hasFeature(MetaEngine::kSupportsDirectLoad)) {
+ (*plugin)->hasFeature(MetaEngine::kSupportsLoadingDuringStartup)) {
int slot = _loadDialog->runModal(plugin, target);
if (slot >= 0) {
ConfMan.setActiveDomain(_domains[item]);