aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Frühwirth2018-03-05 23:06:20 +0100
committerAdrian Frühwirth2018-03-05 23:06:20 +0100
commit225cad379f2af109c84220ddb998035551ee29b2 (patch)
treebc6896b3a7f74f28ba97dd693d770cdca8b1d3e8
parentada79c7f65264a073a2f7ae55ec23211a924a1e6 (diff)
downloadscummvm-rg350-225cad379f2af109c84220ddb998035551ee29b2.tar.gz
scummvm-rg350-225cad379f2af109c84220ddb998035551ee29b2.tar.bz2
scummvm-rg350-225cad379f2af109c84220ddb998035551ee29b2.zip
SLUDGE: Remove unnecessary semicolon
-rw-r--r--engines/sludge/detection.cpp2
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;
}