SCI: Remove unnecessary cast.

This commit is contained in:
Christoph Mallon 2011-08-06 13:06:41 +02:00
parent 5f4d83c38d
commit f3afb32ee6

View File

@ -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 {