CLIENT: Increase Circle Crosshair Size

This commit is contained in:
cypress 2023-11-14 14:46:33 -05:00 committed by GitHub
parent 724e202e11
commit 7271e93337
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {