From 53c9fd508681be58ee8b6bc425cda74dff18812b Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 6 Feb 2012 23:18:23 +0000 Subject: [PATCH] typo --- panda/src/grutil/pfmFile.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panda/src/grutil/pfmFile.cxx b/panda/src/grutil/pfmFile.cxx index a32a77bd60..3f8031b625 100755 --- a/panda/src/grutil/pfmFile.cxx +++ b/panda/src/grutil/pfmFile.cxx @@ -665,10 +665,10 @@ compute_planar_bounds(double point_dist, double sample_radius) const { got_point = true; } else { min_x = min(min_x, point[0]); - min_y = min(min_y, point[0]); + min_y = min(min_y, point[1]); min_z = min(min_z, point[2]); max_x = max(max_x, point[0]); - max_y = max(max_y, point[0]); + max_y = max(max_y, point[1]); max_z = max(max_z, point[2]); } }