diff options
author | pk33 <pk33@pk33.space> | 2024-11-14 15:06:07 +0100 |
---|---|---|
committer | pk33 <pk33@pk33.space> | 2024-11-14 15:06:07 +0100 |
commit | ed2a4bc4400c38ecd11baccac5db328b797b5d68 (patch) | |
tree | b703749d0639f933edca4c3a78209159aa735c25 /src/strings33.c | |
parent | 5a54774474f43ae29716751d6415563a59b92c7d (diff) | |
download | engine33-ed2a4bc4400c38ecd11baccac5db328b797b5d68.tar.gz |
Diffstat (limited to 'src/strings33.c')
-rw-r--r-- | src/strings33.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/strings33.c b/src/strings33.c index 0291393..1d2d78b 100644 --- a/src/strings33.c +++ b/src/strings33.c @@ -24,7 +24,7 @@ static u32 textColours[9] = { }; -void e33_uprintf( Surface33 *surf, Size f, u32 col, Size x, Size y, const char *fmt, ... ) +void strings33_uprintf( Surface33 *surf, Size f, u32 col, Size x, Size y, const char *fmt, ... ) { static char tmp[ _STRING_MAX ]; @@ -32,13 +32,13 @@ void e33_uprintf( Surface33 *surf, Size f, u32 col, Size x, Size y, const char * va_start(args, fmt); vsnprintf(tmp, _STRING_MAX, fmt, args); - e33_uprint( surf, f, col, x, y, tmp ); + strings33_uprint( surf, f, col, x, y, tmp ); va_end(args); } -void e33_uprint( Surface33 *surf, Size f, u32 col, Size x, Size y, const char *str ) +void strings33_uprint( Surface33 *surf, Size f, u32 col, Size x, Size y, const char *str ) { Size i, j, ofs; Font33 *font = fonts[f]; |