Skip to content
This repository has been archived by the owner on Mar 19, 2023. It is now read-only.

Commit

Permalink
Air meter color fix
Browse files Browse the repository at this point in the history
  • Loading branch information
binarymaster committed May 18, 2015
1 parent 3eede8b commit 21df2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DF Sources/g_player.pas
Expand Up @@ -1638,7 +1638,7 @@ procedure TPlayer.DrawGUI();
begin
if g_Texture_Get('TEXTURE_PLAYER_HUDAIR', ID) then
e_Draw(ID, X+2, Y+124, 0, True, False);
e_DrawLine(4, X+16, Y+130, X+16+Trunc(168*IfThen(FAir > 0, FAir, 0)/AIR_MAX), Y+130, 0, 0, 255);
e_DrawLine(4, X+16, Y+130, X+16+Trunc(168*IfThen(FAir > 0, FAir, 0)/AIR_MAX), Y+130, 0, 0, 196);
end;

if g_Game_IsClient then
Expand Down

0 comments on commit 21df2e4

Please sign in to comment.