diff -r cbde85c8c878 -r 1608018c5ff2 src/functions.h --- 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; }