[Scummvm-git-logs] scummvm master -> 6ebc79c3f2975ac4527234734526104c31c9600c
sev-
sev at scummvm.org
Wed May 13 20:01:06 UTC 2020
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:
6ebc79c3f2 DIRECTOR: LINGO: Fix preprocessor for 'sound of'
Commit: 6ebc79c3f2975ac4527234734526104c31c9600c
https://github.com/scummvm/scummvm/commit/6ebc79c3f2975ac4527234734526104c31c9600c
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2020-05-13T22:00:36+02:00
Commit Message:
DIRECTOR: LINGO: Fix preprocessor for 'sound of'
Changed paths:
engines/director/lingo/lingo-preprocessor.cpp
diff --git a/engines/director/lingo/lingo-preprocessor.cpp b/engines/director/lingo/lingo-preprocessor.cpp
index 166c32c949..ab5c1e65df 100644
--- a/engines/director/lingo/lingo-preprocessor.cpp
+++ b/engines/director/lingo/lingo-preprocessor.cpp
@@ -474,6 +474,8 @@ Common::String preprocessSound(Common::String in) {
next.equalsIgnoreCase("stop")) {
res += '#'; // Turn it into SYMBOL
modified = true;
+ } else {
+ res += ' ';
}
res += next;
More information about the Scummvm-git-logs
mailing list