]> err.no Git - libchamplain/commitdiff
Code simplification
authorPierre-Luc Beaudoin <pierre-luc@squidy.info>
Fri, 5 Sep 2008 02:04:02 +0000 (22:04 -0400)
committerPierre-Luc Beaudoin <pierre-luc@squidy.info>
Fri, 5 Sep 2008 02:04:02 +0000 (22:04 -0400)
champlain/champlainview.c

index 785aae61b0b88b7c214c324266487f83fa0a7e53..27712dddffa56b98205544503b0853a2ac319ec6 100644 (file)
@@ -529,8 +529,7 @@ champlain_view_center_on (ChamplainView *champlainView, gdouble longitude, gdoub
     if ( anchor->y < 0 )
       anchor->y = 0;
 
-    gdouble max = priv->map->longitude_to_x(priv->map, 180, priv->map->current_level->level)
-       - (G_MAXINT16 / 2);
+    gdouble max = zoom_level_get_width(priv->map->current_level) - (G_MAXINT16 / 2);
     if (anchor->x > max)
       anchor->x = max;
     if (anchor->y > max)