Skip to content

Commit

Permalink
HUD: Fix ammo counter being misplaced
Browse files Browse the repository at this point in the history
  • Loading branch information
dastrukar committed Jan 29, 2021
1 parent 1ef4ab1 commit 78eaecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fdhud.zs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class fdhud : BaseStatusBar
DrawString(mHUDFont, ammotype2_string, (x+24, y+3), DI_TEXT_ALIGN_CENTER|DI_NOSHADOW);
DrawString(mIndexFont, ammotype1_string, (x+46, y+16), DI_TEXT_ALIGN_RIGHT|DI_NOSHADOW);
}
else { DrawString(mHUDFont, ammotype1_string, (x+44, y+3), DI_TEXT_ALIGN_CENTER|DI_NOSHADOW); }
else { DrawString(mHUDFont, ammotype1_string, (x+24, y+3), DI_TEXT_ALIGN_CENTER|DI_NOSHADOW); }
}
else
{
Expand Down

0 comments on commit 78eaecb

Please sign in to comment.