[Scummvm-git-logs] scummvm master -> 7d52dbe7ebb052617de4aab39107b87220a59509

eriktorbjorn eriktorbjorn at telia.com
Fri Aug 25 17:56:37 CEST 2017


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7d52dbe7eb JANITORIAL: Remove unnecessary semicolon


Commit: 7d52dbe7ebb052617de4aab39107b87220a59509
    https://github.com/scummvm/scummvm/commit/7d52dbe7ebb052617de4aab39107b87220a59509
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2017-08-25T17:56:09+02:00

Commit Message:
JANITORIAL: Remove unnecessary semicolon

Changed paths:
    engines/sci/engine/script.cpp


diff --git a/engines/sci/engine/script.cpp b/engines/sci/engine/script.cpp
index b3857f3..a0243de 100644
--- a/engines/sci/engine/script.cpp
+++ b/engines/sci/engine/script.cpp
@@ -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;





More information about the Scummvm-git-logs mailing list