diff options
| author | Michal Zima <xhire@mujmalysvet.cz> | 2009-12-06 22:58:26 +0100 |
|---|---|---|
| committer | Michal Zima <xhire@mujmalysvet.cz> | 2009-12-06 22:58:26 +0100 |
| commit | 753131cf9b32315fdd11f2ce6e58b8f2d6ba3bc1 (patch) | |
| tree | cfbded574ded7c3c666de6211877469ff6a95d75 /src/base/tux.c | |
| parent | a0939379bb1185ee6d66739d9d021466d5d89624 (diff) | |
Revised methods how are translated strings handled
Few comments were made available to Doxygen
Diffstat (limited to 'src/base/tux.c')
| -rw-r--r-- | src/base/tux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/tux.c b/src/base/tux.c index bed47fc..33984f7 100644 --- a/src/base/tux.c +++ b/src/base/tux.c @@ -148,7 +148,7 @@ void tux_get_course(int n, int *x, int *y) break; default: - fprintf(stderr, _("[Error] Unknown direction of the tux [%d]\n"), n); + error("Unknown direction of the tux [%d]", n); assert(0); break; } @@ -185,7 +185,7 @@ void tux_draw(tux_t *tux) break; default: - fprintf(stderr, _("[Error] Unknown direction of the tux [%d]\n"), tux->position); + error("Unknown direction of the tux [%d]", tux->position); assert(0); break; } |