--- deliantra/server/include/map.h 2009/05/05 04:51:56 1.112 +++ deliantra/server/include/map.h 2009/10/12 04:02:17 1.113 @@ -520,7 +520,7 @@ } // loop over every space in the given maprect, -// setting m, nx, ny to the map and -coordinate and dx, dy to the offste relative to dx0,dy0 +// setting m, nx, ny to the map and -coordinate and dx, dy to the offset relative to dx0,dy0 // the iterator code must be a single statement following this macro call, similar to "if" // "continue" will skip to the next space #define rect_mapwalk(rect,dx0,dy0) \ @@ -530,7 +530,7 @@ statementvar (int, dx, nx + (rect)->dx - (dx0)) \ statementvar (int, dy, ny + (rect)->dy - (dy0)) -// same as above, but the walk will not follow any particular +// same as ordered_mapwalk, but the walk will not follow any particular // order (unorded), but is likely faster. // m will be set to the map (never 0!), nx, ny to the map coord, dx, dy to the offset relative to op // "continue" will skip to the next space