src/functions.h
branchcustombridgeheads
changeset 5648 1608018c5ff2
parent 5643 3778051e8095
child 5650 aefc131bf5ce
--- a/src/functions.h	Wed Jan 03 20:00:29 2007 +0000
+++ b/src/functions.h	Thu Jan 11 13:16:26 2007 +0000
@@ -20,15 +20,9 @@
 
 static inline Point RemapCoords(int x, int y, int z)
 {
-#if !defined(NEW_ROTATION)
 	Point pt;
 	pt.x = (y - x) * 2;
 	pt.y = y + x - z;
-#else
-	Point pt;
-	pt.x = (x + y) * 2;
-	pt.y = x - y - z;
-#endif
 	return pt;
 }