summaryrefslogtreecommitdiffhomepage
path: root/src/hud.h
diff options
context:
space:
mode:
authorMichael Smith <mikesmiffy128@gmail.com>2024-08-04 17:56:35 +0100
committerMichael Smith <mikesmiffy128@gmail.com>2024-08-23 20:37:37 +0100
commit78323e416f79ef9c26bbd742082627bc45e116c1 (patch)
treec954aae8e799604caae414723d6d9ca5c882320d /src/hud.h
parent83da606072ce272eb053d4e1497d77e647cfecae (diff)
Fix an old and stupid woopsy in hud.h
This wasn't woz's fault - I did some wrangling of his code and introduced this woopsy without noticing. Thanks to aciidz also, for pointing it out recently. Not touching the copyright years because it's such a stupidly trivial thing - I can't really claim to have done anything substantial here.
Diffstat (limited to 'src/hud.h')
-rw-r--r--src/hud.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hud.h b/src/hud.h
index 8ea0877..fed152f 100644
--- a/src/hud.h
+++ b/src/hud.h
@@ -67,6 +67,6 @@ void hud_screensize(int *width, int *height);
int hud_fontheight(ulong font);
/* Returns the width of a font character, in pixels. */
-int hud_getcharwidth(ulong font, int ch);
+int hud_charwidth(ulong font, int ch);
#endif