From 0e7cf378a4497e0d3bec9680f858ea241174f615 Mon Sep 17 00:00:00 2001 From: Nathaniel MacArthur-Warner Date: Wed, 23 Dec 2020 14:07:34 -0800 Subject: [PATCH] Indent fix --- simgear/scene/util/OrthophotoManager.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/scene/util/OrthophotoManager.cxx b/simgear/scene/util/OrthophotoManager.cxx index 55507cbe..617138e5 100644 --- a/simgear/scene/util/OrthophotoManager.cxx +++ b/simgear/scene/util/OrthophotoManager.cxx @@ -264,7 +264,7 @@ namespace simgear { const ImageRef& some_image = some_orthophoto->_texture->getImage(); const OrthophotoBounds& some_bbox = some_orthophoto->getBbox(); const double degs_to_pixels_x = some_image->s() / some_bbox.getWidth(); - const double degs_to_pixels_y = some_image->t() / some_bbox.getHeight(); + const double degs_to_pixels_y = some_image->t() / some_bbox.getHeight(); const int total_width = degs_to_pixels_x * _bbox.getWidth(); const int total_height = degs_to_pixels_y * _bbox.getHeight();