From c565e3388673227cfd6ea6ae7913cfe85811f995 Mon Sep 17 00:00:00 2001 From: gamemasterplc Date: Thu, 23 Nov 2023 21:26:02 -0600 Subject: [PATCH] Make WireDraw static --- src/game/printfunc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/printfunc.c b/src/game/printfunc.c index f62322eb..a976be7e 100644 --- a/src/game/printfunc.c +++ b/src/game/printfunc.c @@ -302,7 +302,7 @@ void pfDrawFonts(void) } } -void WireDraw(void) //Is not private to prevent linker error due to analysis bug of refMapData0 +static void WireDraw(void) { Mtx44 proj; Mtx modelview; @@ -349,4 +349,4 @@ void WireDraw(void) //Is not private to prevent linker error due to analysis bug GXPosition2f32(16, 440); GXColor3u8(255, 0, 0); GXEnd(); -} \ No newline at end of file +}