aboutsummaryrefslogtreecommitdiff
path: root/engines/sky
diff options
context:
space:
mode:
authorBastien Bouclet2018-05-10 09:26:26 +0200
committerBastien Bouclet2018-05-10 09:26:26 +0200
commit1dcb8076db64420ab28722a73583f89b38314e71 (patch)
tree84b14cadcdc06c9fcb161a1f81b3918f2b5b6729 /engines/sky
parent2fe060e5c9491ddd7c8f639aab5d7c58c7c73092 (diff)
downloadscummvm-rg350-1dcb8076db64420ab28722a73583f89b38314e71.tar.gz
scummvm-rg350-1dcb8076db64420ab28722a73583f89b38314e71.tar.bz2
scummvm-rg350-1dcb8076db64420ab28722a73583f89b38314e71.zip
ENGINES: Remove usage of C++11 extended initializer lists
Diffstat (limited to 'engines/sky')
-rw-r--r--engines/sky/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sky/detection.cpp b/engines/sky/detection.cpp
index 6beaf02fdc..642e4d31a7 100644
--- a/engines/sky/detection.cpp
+++ b/engines/sky/detection.cpp
@@ -138,7 +138,7 @@ const ExtraGuiOptions SkyMetaEngine::getExtraGuiOptions(const Common::String &ta
PlainGameDescriptor SkyMetaEngine::findGame(const char *gameid) const {
if (0 == scumm_stricmp(gameid, skySetting.gameId))
return skySetting;
- return PlainGameDescriptor();
+ return PlainGameDescriptor::empty();
}
DetectedGames SkyMetaEngine::detectGames(const Common::FSList &fslist) const {