diff options
author | Adrian Frühwirth | 2018-03-05 23:06:20 +0100 |
---|---|---|
committer | Adrian Frühwirth | 2018-03-05 23:06:20 +0100 |
commit | 225cad379f2af109c84220ddb998035551ee29b2 (patch) | |
tree | bc6896b3a7f74f28ba97dd693d770cdca8b1d3e8 /engines | |
parent | ada79c7f65264a073a2f7ae55ec23211a924a1e6 (diff) | |
download | scummvm-rg350-225cad379f2af109c84220ddb998035551ee29b2.tar.gz scummvm-rg350-225cad379f2af109c84220ddb998035551ee29b2.tar.bz2 scummvm-rg350-225cad379f2af109c84220ddb998035551ee29b2.zip |
SLUDGE: Remove unnecessary semicolon
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sludge/detection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sludge/detection.cpp b/engines/sludge/detection.cpp index cdb67fae79..a530a5c796 100644 --- a/engines/sludge/detection.cpp +++ b/engines/sludge/detection.cpp @@ -147,7 +147,7 @@ const ADGameDescription *SludgeMetaEngine::fallbackDetect(const FileMap &allFile s_fallbackFileNameBuffer[50] = '\0'; s_fallbackDesc.desc.filesDescriptions[0].fileName = s_fallbackFileNameBuffer; - return (const ADGameDescription *)&s_fallbackDesc;; + return (const ADGameDescription *)&s_fallbackDesc; } return 0; } |