[Scummvm-git-logs] scummvm master -> f71ede7d29f47a742ea0126a9b5b57e16c3d7842
digitall
noreply at scummvm.org
Sun Feb 12 14:19:44 UTC 2023
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:
f71ede7d29 TETRAEDGE: Silence Fall Through GCC Compiler Warning
Commit: f71ede7d29f47a742ea0126a9b5b57e16c3d7842
https://github.com/scummvm/scummvm/commit/f71ede7d29f47a742ea0126a9b5b57e16c3d7842
Author: D G Turner (digitall at scummvm.org)
Date: 2023-02-12T14:18:56Z
Commit Message:
TETRAEDGE: Silence Fall Through GCC Compiler Warning
This is marked with a FIXME as it is unclear if this is intentional.
Changed paths:
engines/tetraedge/game/in_game_scene_xml_parser.cpp
diff --git a/engines/tetraedge/game/in_game_scene_xml_parser.cpp b/engines/tetraedge/game/in_game_scene_xml_parser.cpp
index 3d29262a168..3a1762b7b1c 100644
--- a/engines/tetraedge/game/in_game_scene_xml_parser.cpp
+++ b/engines/tetraedge/game/in_game_scene_xml_parser.cpp
@@ -147,6 +147,8 @@ bool InGameSceneXmlParser::textCallback(const Common::String &val) {
}
_fmzGridSize = sz;
}
+ // fall through
+ // FIXME: Is this intentional or break missing?
default:
parserError("Unexpected text block");
return false;
More information about the Scummvm-git-logs
mailing list