Skip to content

Commit

Permalink
QW hud: Don't do the scoreboard-avoiding offset in coop (since no sco…
Browse files Browse the repository at this point in the history
…reboard there)
  • Loading branch information
bangstk committed Nov 1, 2023
1 parent 8171819 commit 683f2d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Quake/sbar.c
Original file line number Diff line number Diff line change
Expand Up @@ -807,10 +807,10 @@ void Sbar_DrawInventoryQW (void)
pic = Sbar_InventoryBarPic();

// handle sigil overlap w/ side scoreboard
if (Sbar_MiniScoreboardSizeCheck())
if (cl.gametype == GAME_DEATHMATCH && Sbar_MiniScoreboardSizeCheck() )
{
if (rogue || hipnotic)
scoreboard_y_gap = 8; // no sigils so can move weps down a bit
scoreboard_y_gap = 0; // no sigils so can move weps down a bit
else
scoreboard_y_gap = 24;
}
Expand Down

0 comments on commit 683f2d7

Please sign in to comment.