diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2024-08-04 17:56:35 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2024-08-23 20:37:37 +0100 |
commit | 78323e416f79ef9c26bbd742082627bc45e116c1 (patch) | |
tree | c954aae8e799604caae414723d6d9ca5c882320d /src/hud.h | |
parent | 83da606072ce272eb053d4e1497d77e647cfecae (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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |