[Scummvm-git-logs] scummvm master -> 61cfa788a018a9f8ed6a71288739a87531d2ae33
digitall
noreply at scummvm.org
Sat Mar 5 16:02:30 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:
61cfa788a0 SCI: Fix GCC Compiler Fallthrough Warning
Commit: 61cfa788a018a9f8ed6a71288739a87531d2ae33
https://github.com/scummvm/scummvm/commit/61cfa788a018a9f8ed6a71288739a87531d2ae33
Author: D G Turner (digitall at scummvm.org)
Date: 2022-03-05T16:01:54Z
Commit Message:
SCI: Fix GCC Compiler Fallthrough Warning
Changed paths:
engines/sci/engine/guest_additions.cpp
diff --git a/engines/sci/engine/guest_additions.cpp b/engines/sci/engine/guest_additions.cpp
index 8fb0c0e0049..f5b9083093f 100644
--- a/engines/sci/engine/guest_additions.cpp
+++ b/engines/sci/engine/guest_additions.cpp
@@ -162,7 +162,7 @@ static Common::String getUserObject(SciGameId gameId) {
// German Amiga versions
if (getSciVersion() == SCI_VERSION_1_MIDDLE)
return "PUser";
- // fallthrough intended
+ // fallthrough
default:
return "User";
}
More information about the Scummvm-git-logs
mailing list