[Scummvm-git-logs] scummvm master -> 32cb90c53e2aafe0c07658fbc42d204dd75ac764
digitall
noreply at scummvm.org
Sat Apr 8 02:48:15 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:
32cb90c53e TETRAEDGE: Fix GCC Compiler Warning of Identical Branches
Commit: 32cb90c53e2aafe0c07658fbc42d204dd75ac764
https://github.com/scummvm/scummvm/commit/32cb90c53e2aafe0c07658fbc42d204dd75ac764
Author: D G Turner (digitall at scummvm.org)
Date: 2023-04-08T03:47:25+01:00
Commit Message:
TETRAEDGE: Fix GCC Compiler Warning of Identical Branches
Changed paths:
engines/tetraedge/te/te_marker.cpp
diff --git a/engines/tetraedge/te/te_marker.cpp b/engines/tetraedge/te/te_marker.cpp
index b10c296520a..a0229cf9ae5 100644
--- a/engines/tetraedge/te/te_marker.cpp
+++ b/engines/tetraedge/te/te_marker.cpp
@@ -36,9 +36,9 @@ void TeMarker::update(TeCamera *camera) {
return;
TeVector3f32 transformLoc = camera->transformCoord(_loc);
if (transformLoc.z() < 0) {
- error("TODO: Finish TeMarker::update");
+ error("TODO: Finish TeMarker::update (z < 0)");
} else {
- error("TODO: Finish TeMarker::update");
+ error("TODO: Finish TeMarker::update (z >= 0)");
}
}
More information about the Scummvm-git-logs
mailing list