Index: trunk/psLib/src/imageops/psImageMap.c
===================================================================
--- trunk/psLib/src/imageops/psImageMap.c	(revision 20020)
+++ trunk/psLib/src/imageops/psImageMap.c	(revision 20767)
@@ -7,6 +7,6 @@
  *  @author Eugene Magnier, IfA
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2008-10-09 20:42:51 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2008-11-17 02:37:28 $
  *
  *  Copyright 2007 Institute for Astronomy, University of Hawaii
@@ -349,6 +349,6 @@
 double psImageMapEval(const psImageMap *map, float x, float y)
 {
-    // This may be called in a type loop, so no assertions
-    return psImageUnbinPixel_V2(x, y, map->map, map->binning);
+    // This may be called in a tight loop, so no assertions
+    return psImageUnbinPixel(x, y, map->map, map->binning);
 }
 
@@ -365,5 +365,5 @@
 
     for (int i = 0; i < x->n; i++) {
-        result->data.F32[i] = psImageUnbinPixel_V2(x->data.F32[i], y->data.F32[i], map->map, map->binning);
+        result->data.F32[i] = psImageUnbinPixel(x->data.F32[i], y->data.F32[i], map->map, map->binning);
     }
 
