From 067875ab93d040bf32a4e6c37e9c36682294e4d6 Mon Sep 17 00:00:00 2001 From: Julian Smith Date: Tue, 9 Nov 2021 21:35:59 +0000 Subject: [PATCH] simgear/scene/util/OrthophotoManager.cxx: added missing break statement. --- simgear/scene/util/OrthophotoManager.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/simgear/scene/util/OrthophotoManager.cxx b/simgear/scene/util/OrthophotoManager.cxx index 28b1c3ca..c8e60556 100644 --- a/simgear/scene/util/OrthophotoManager.cxx +++ b/simgear/scene/util/OrthophotoManager.cxx @@ -201,6 +201,7 @@ namespace simgear { case StraddlingPm: expandToInclude(bounds._minNegLon, bounds._minLat); expandToInclude(bounds._maxPosLon, bounds._maxLat); + break; case StraddlingIdl: expandToInclude(bounds._minPosLon, bounds._minLat); expandToInclude(bounds._maxNegLon, bounds._maxLat);