mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
Do not draw crosshair on automap with alternative HUD enabled
This commit is contained in:
parent
e7330cfa03
commit
b398c7458c
1 changed files with 1 additions and 1 deletions
|
@ -808,7 +808,7 @@ void D_Display ()
|
|||
{
|
||||
StatusBar->DrawBottomStuff (HUD_AltHud);
|
||||
if (DrawFSHUD || automapactive) DrawHUD();
|
||||
if (players[consoleplayer].camera && players[consoleplayer].camera->player)
|
||||
if (players[consoleplayer].camera && players[consoleplayer].camera->player && !automapactive)
|
||||
{
|
||||
StatusBar->DrawCrosshair();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue