Make WireDraw static

This commit is contained in:
gamemasterplc 2023-11-23 21:26:02 -06:00 committed by GitHub
parent 5ca4ead178
commit c565e33886
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();
}
}