Skip to content

Commit

Permalink
change css key overlay a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
rtldg committed Jul 23, 2021
1 parent ec3e4d2 commit 5a4acc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/shavit-hud.sp
Original file line number Diff line number Diff line change
Expand Up @@ -1678,9 +1678,9 @@ void UpdateCenterKeys(int client)
}

char sCenterText[80];
FormatEx(sCenterText, sizeof(sCenterText), " %s  %s\n%s  %s  %s\n%s  %s  %s\n %s  %s",
FormatEx(sCenterText, sizeof(sCenterText), " %s  %s\n%s %s %s\n%s  %s  %s\n %s  %s",
(buttons & IN_JUMP) > 0? "":"", (buttons & IN_DUCK) > 0? "":"",
(fAngleDiff > 0) ? "":" ", (buttons & IN_FORWARD) > 0 ? "":"", (fAngleDiff < 0) ? "":" ",
(fAngleDiff > 0) ? "<":" ", (buttons & IN_FORWARD) > 0 ? "":" ", (fAngleDiff < 0) ? ">":"",
(buttons & IN_MOVELEFT) > 0? "":"", (buttons & IN_BACK) > 0? "":"", (buttons & IN_MOVERIGHT) > 0? "":"",
(buttons & IN_LEFT) > 0? "":" ", (buttons & IN_RIGHT) > 0? "":" ");

Expand Down

0 comments on commit 5a4acc4

Please sign in to comment.