Skip to content

Commit

Permalink
JANITORIAL: Remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Torbjörn Andersson committed Aug 25, 2017
1 parent 9b07378 commit 7d52dbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sci/engine/script.cpp
Expand Up @@ -912,7 +912,7 @@ SciSpan<const byte> Script::findBlockSCI0(ScriptObjectTypes type, bool findLastB
assert(blockSize > 0);

if (blockType == type) {
foundBlock = buf.subspan(0, blockSize, Common::String::format("%s, %s block", _buf->name().c_str(), sciObjectTypeNames[type]));;
foundBlock = buf.subspan(0, blockSize, Common::String::format("%s, %s block", _buf->name().c_str(), sciObjectTypeNames[type]));

if (!findLastBlock) {
break;
Expand Down

0 comments on commit 7d52dbe

Please sign in to comment.