[Scummvm-git-logs] scummvm master -> ab9fe9706a14ff237750997270f03b475a37a1f9
rvanlaar
roland at rolandvanlaar.nl
Sun Aug 23 08:10:42 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:
ab9fe9706a DIRECTOR: LINGO: spelling fix for fallthrough
Commit: ab9fe9706a14ff237750997270f03b475a37a1f9
https://github.com/scummvm/scummvm/commit/ab9fe9706a14ff237750997270f03b475a37a1f9
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2020-08-23T10:08:55+02:00
Commit Message:
DIRECTOR: LINGO: spelling fix for fallthrough
Make implicit fallthrough explicit
Changed paths:
engines/director/lingo/lingo-builtins.cpp
diff --git a/engines/director/lingo/lingo-builtins.cpp b/engines/director/lingo/lingo-builtins.cpp
index cc252eed07..7bbb3776b7 100644
--- a/engines/director/lingo/lingo-builtins.cpp
+++ b/engines/director/lingo/lingo-builtins.cpp
@@ -1283,12 +1283,12 @@ void LB::b_play(int nargs) {
switch (nargs) {
case 2:
movie = g_lingo->pop();
- // fall though
+ // fall through
case 1:
frame = g_lingo->pop();
if (!(frame.type == INT && frame.u.i == 0) && nargs == 1)
break;
- // fall though
+ // fall through
case 0:
frame.type = SYMBOL;
frame.u.s = new Common::String("done");
More information about the Scummvm-git-logs
mailing list