From 78323e416f79ef9c26bbd742082627bc45e116c1 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Sun, 4 Aug 2024 17:56:35 +0100 Subject: 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. --- src/hud.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3