? geomipterrain-warning.patch Index: geoMipTerrain.cxx =================================================================== RCS file: /cvsroot/panda3d/panda/src/grutil/geoMipTerrain.cxx,v retrieving revision 1.18 diff -u -r1.18 geoMipTerrain.cxx --- geoMipTerrain.cxx 11 Apr 2009 13:41:20 -0000 1.18 +++ geoMipTerrain.cxx 21 Jun 2009 02:57:56 -0000 @@ -627,8 +627,9 @@ // If it's not a valid size, tell PNMImage to resize it. if (reqx != imgheader.get_x_size() || reqy != imgheader.get_y_size()) { - grutil_cat.warning() << "Rescaling heightfield image " << filename << " to " - << reqx << " by " << reqy << " pixels\n"; + grutil_cat.warning() << "Rescaling heightfield image " << filename + << " from " << imgheader.get_x_size() << "x" << imgheader.get_y_size() + << " to " << reqx << "x" << reqy << " pixels.\n"; _heightfield.set_read_size(reqx, reqy); } }