aboutsummaryrefslogtreecommitdiff
path: root/engines/lab/detection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lab/detection.cpp')
-rw-r--r--engines/lab/detection.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/lab/detection.cpp b/engines/lab/detection.cpp
index 5850dc69ae..c26231292b 100644
--- a/engines/lab/detection.cpp
+++ b/engines/lab/detection.cpp
@@ -155,9 +155,10 @@ bool LabMetaEngine::hasFeature(MetaEngineFeature f) const {
}
bool Lab::LabEngine::hasFeature(EngineFeature f) const {
- return (f == kSupportsRTL);
- //(f == kSupportsLoadingDuringRuntime) ||
- //(f == kSupportsSavingDuringRuntime);
+ return
+ (f == kSupportsRTL) ||
+ (f == kSupportsLoadingDuringRuntime) ||
+ (f == kSupportsSavingDuringRuntime);
}
SaveStateList LabMetaEngine::listSaves(const char *target) const {