mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-10 14:42:05 +00:00
CLIENT: Increase Circle Crosshair Size
This commit is contained in:
parent
724e202e11
commit
7271e93337
1 changed files with 2 additions and 2 deletions
|
@ -1278,8 +1278,8 @@ void() Draw_Crosshair =
|
|||
}
|
||||
// Area of Effect (o)
|
||||
else if (crosshair_value == 2) {
|
||||
float circle_offset = stringwidth("O", 0, [12, 12])/2;
|
||||
drawstring([g_width/2 - circle_offset, g_height/2 - circle_offset], "O", [12, 12], crosshair_color, 1, 0);
|
||||
float circle_offset = stringwidth("O", 0, [14, 14])/2;
|
||||
drawstring([g_width/2 - circle_offset, g_height/2 - circle_offset], "O", [14, 14], crosshair_color, 1, 0);
|
||||
}
|
||||
// Dot crosshair (.)
|
||||
else if (crosshair_value == 3) {
|
||||
|
|
Loading…
Reference in a new issue