aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/detection.cpp
diff options
context:
space:
mode:
authorChristoph Mallon2011-08-06 13:06:41 +0200
committerChristoph Mallon2011-08-07 15:19:08 +0200
commitf3afb32ee6039f69f3b3616989cc26fd4a0dca95 (patch)
tree9a5ada42305f3f8c730980c0de70b9c0ac5b648b /engines/sci/detection.cpp
parent5f4d83c38da338ebebb50a5d978d4b81ed361808 (diff)
downloadscummvm-rg350-f3afb32ee6039f69f3b3616989cc26fd4a0dca95.tar.gz
scummvm-rg350-f3afb32ee6039f69f3b3616989cc26fd4a0dca95.tar.bz2
scummvm-rg350-f3afb32ee6039f69f3b3616989cc26fd4a0dca95.zip
SCI: Remove unnecessary cast.
Diffstat (limited to 'engines/sci/detection.cpp')
-rw-r--r--engines/sci/detection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp
index 2285e512bd..b04c1a69f3 100644
--- a/engines/sci/detection.cpp
+++ b/engines/sci/detection.cpp
@@ -588,7 +588,7 @@ const ADGameDescription *SciMetaEngine::fallbackDetect(const FileMap &allFiles,
s_fallbackDesc.extra = "CD";
}
- return (const ADGameDescription *)&s_fallbackDesc;
+ return &s_fallbackDesc;
}
bool SciMetaEngine::createInstance(OSystem *syst, Engine **engine, const ADGameDescription *desc) const {