]> err.no Git - mapper/commitdiff
Check for _zoom < 2 for big icons
authorKaj-Michael Lang <milang@angel.tal.org>
Sun, 14 Oct 2007 10:45:27 +0000 (13:45 +0300)
committerKaj-Michael Lang <milang@angel.tal.org>
Sun, 14 Oct 2007 10:45:27 +0000 (13:45 +0300)
src/map-poi.c

index e68062475d610f9ae0014f2dfe28318411e67af7..e897ee4b822d70749bd4457a3084976260d203b9 100644 (file)
@@ -60,7 +60,7 @@ if (icon==NULL)
        return NULL;
 
 g_snprintf(buffer, sizeof(buffer), DATADIR "/map-icons/classic.%s/%s.png", 
-       (_zoom==1) ? "big" : "small", icon);
+       (_zoom<2) ? "big" : "small", icon);
 
 pixbuf = g_hash_table_lookup(poi_icon_hash, buffer);
 if (pixbuf)