[Scummvm-git-logs] scummvm master -> d5fd9e4eb12815fe9f91c0e77352a80d6e7e49e6

rvanlaar noreply at scummvm.org
Sun Mar 13 12:44:05 UTC 2022


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:
d5fd9e4eb1 JANITORIAL: Remove space before semicolon


Commit: d5fd9e4eb12815fe9f91c0e77352a80d6e7e49e6
    https://github.com/scummvm/scummvm/commit/d5fd9e4eb12815fe9f91c0e77352a80d6e7e49e6
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2022-03-13T13:43:19+01:00

Commit Message:
JANITORIAL: Remove space before semicolon

Changed paths:
    engines/director/cast.cpp
    engines/director/lingo/lingo.h


diff --git a/engines/director/cast.cpp b/engines/director/cast.cpp
index 41b991be707..22be9ea352a 100644
--- a/engines/director/cast.cpp
+++ b/engines/director/cast.cpp
@@ -1081,7 +1081,7 @@ void Cast::loadLingoContext(Common::SeekableReadStreamEndian &stream) {
 		}
 
 		// mark unused entries
-		int16 nextUnused = firstUnused ;
+		int16 nextUnused = firstUnused;
 		while (0 <= nextUnused && nextUnused < (int16)entries.size()) {
 			LingoContextEntry &entry = entries[nextUnused];
 			entry.unused = true;
diff --git a/engines/director/lingo/lingo.h b/engines/director/lingo/lingo.h
index d5afb31a143..99d2405b972 100644
--- a/engines/director/lingo/lingo.h
+++ b/engines/director/lingo/lingo.h
@@ -383,7 +383,7 @@ public:
 	bool _exitLock;
 	Datum _searchPath;
 	int _traceLoad; // internal Director verbosity level
-	bool _updateMovieEnabled ;
+	bool _updateMovieEnabled;
 
 	Datum getTheEntity(int entity, Datum &id, int field);
 	void setTheEntity(int entity, Datum &id, int field, Datum &d);




More information about the Scummvm-git-logs mailing list