don't free crosshair patch (#2085)

* don't draw crosshair two times
This commit is contained in:
Roman Fomin 2024-12-12 17:58:26 +07:00 committed by GitHub
parent 1c179adb81
commit d5830f2ce9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 10 deletions

View File

@ -79,11 +79,6 @@ void HU_InitCrosshair(void)
void HU_StartCrosshair(void)
{
if (crosshair.patch)
{
Z_ChangeTag(crosshair.patch, PU_CACHE);
}
if (crosshair_lumps[hud_crosshair])
{
crosshair.patch =

View File

@ -1786,11 +1786,6 @@ void ST_Drawer(void)
}
DrawStatusBar();
if (hud_crosshair)
{
HU_DrawCrosshair();
}
}
void ST_Start(void)