aboutsummaryrefslogtreecommitdiff
path: root/src/strings33.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strings33.c')
-rw-r--r--src/strings33.c6
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];