Index: trunk/dvoTools/src/dvoApplyCorrReadout.c
===================================================================
--- trunk/dvoTools/src/dvoApplyCorrReadout.c	(revision 20370)
+++ trunk/dvoTools/src/dvoApplyCorrReadout.c	(revision 20371)
@@ -47,7 +47,7 @@
     // coordinates to the correction cell/pixel coords.
     for (int j = 0; j < inImage->numRows; j++) {
-	int jC = (yParity < 0) ? y0 + j*yParity : y0 + j*yParity + 1;
+	int jC = y0 + j*yParity;
 	for (int i = 0; i < inImage->numCols; i++) {
-	    int iC = (xParity < 0) ? x0 + i*xParity : x0 + i*xParity + 1;
+	    int iC = x0 + i*xParity;
 	    inImage->data.F32[j][i] *= corrImage->data.F32[jC][iC]; 
 	}
