| 3324 | // Like DrawTurtle() except adjust coordinates for antialiasing first. |
| 3325 | |
| 3326 | void DrawTurtle2(CONST char *sz, int x, int y) |
| 3327 | { |
| 3328 | AdjustCoordinates(&x, &y); |
| 3329 | DrawTurtle(sz, x, y); |
| 3330 | } |
| 3331 | #else |
| 3332 | #define DrawTurtle2(sz, x, y) DrawTurtle(sz, x, y) |
| 3333 | #endif |
no test coverage detected