[Scummvm-git-logs] scummvm master -> 3b8685a77c9b8207b5fe8104a105302d12c9f7f0
digitall
547637+digitall at users.noreply.github.com
Fri Oct 29 00:41:29 UTC 2021
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:
3b8685a77c PLAYGROUND3D: Fix Errorneous Fallthrough in Switch Statement
Commit: 3b8685a77c9b8207b5fe8104a105302d12c9f7f0
https://github.com/scummvm/scummvm/commit/3b8685a77c9b8207b5fe8104a105302d12c9f7f0
Author: D G Turner (digitall at scummvm.org)
Date: 2021-10-29T01:40:22+01:00
Commit Message:
PLAYGROUND3D: Fix Errorneous Fallthrough in Switch Statement
Changed paths:
engines/playground3d/playground3d.cpp
diff --git a/engines/playground3d/playground3d.cpp b/engines/playground3d/playground3d.cpp
index 9b086096ea..64e77f9abe 100644
--- a/engines/playground3d/playground3d.cpp
+++ b/engines/playground3d/playground3d.cpp
@@ -75,6 +75,7 @@ Common::Error Playground3dEngine::run() {
break;
case 2:
_clearColor = Math::Vector4d(0.5f, 0.5f, 0.5f, 1.0f);
+ break;
case 3:
_clearColor = Math::Vector4d(1.0f, 0.0f, 0.0f, 1.0f);
break;
More information about the Scummvm-git-logs
mailing list