- allow A_SetCrosshair(-1) to hide the crosshair for effects such as custom scopes

This commit is contained in:
Rachael Alexanderson 2024-04-18 03:16:38 -04:00
parent 3d57170e69
commit 8fe58db311
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0

View file

@ -233,6 +233,10 @@ void ST_LoadCrosshair(bool alwaysload)
{
num = crosshair;
}
if (num < 0)
{
num = 0;
}
ST_LoadCrosshair(num, alwaysload);
}