diff options
author | Strangerke | 2019-07-23 07:20:53 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:26 +0200 |
commit | 616045496c7fd25b09c6c1554f8fcb02d8e6a706 (patch) | |
tree | 4629835fd86143dc3dbe99643930a6118654d025 /engines/hdb | |
parent | bcf910470c0dfef858045cc224ec686e539937b8 (diff) | |
download | scummvm-rg350-616045496c7fd25b09c6c1554f8fcb02d8e6a706.tar.gz scummvm-rg350-616045496c7fd25b09c6c1554f8fcb02d8e6a706.tar.bz2 scummvm-rg350-616045496c7fd25b09c6c1554f8fcb02d8e6a706.zip |
HDB: (Hopefully) fix a c&p error in hasFeature()
Diffstat (limited to 'engines/hdb')
-rw-r--r-- | engines/hdb/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/detection.cpp b/engines/hdb/detection.cpp index a69a83cec6..3c3c153157 100644 --- a/engines/hdb/detection.cpp +++ b/engines/hdb/detection.cpp @@ -116,8 +116,8 @@ public: bool HDBMetaEngine::hasFeature(MetaEngineFeature f) const { return (f == kSupportsLoadingDuringStartup) || - (f == kSupportsLoadingDuringStartup) || (f == kSupportsListSaves) || + (f == kSupportsDeleteSave) || (f == kSavesSupportMetaInfo) || (f == kSavesSupportThumbnail) || (f == kSavesSupportPlayTime); |