mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
VITA/NX: Fix crosshair spread
This commit is contained in:
parent
fceec60479
commit
db62654d8e
1 changed files with 4 additions and 4 deletions
|
@ -1387,10 +1387,10 @@ int CrossHairWeapon (void)
|
|||
break;
|
||||
}
|
||||
|
||||
i *= 0.75;
|
||||
i += 10;
|
||||
|
||||
if (cl.perks & 64)
|
||||
i *= 0.65;
|
||||
i *= 0.75;
|
||||
|
||||
return i;
|
||||
}
|
||||
|
@ -1463,10 +1463,10 @@ int CrossHairMaxSpread (void)
|
|||
break;
|
||||
}
|
||||
|
||||
i *= 0.75;
|
||||
i += 10;
|
||||
|
||||
if (cl.perks & 64)
|
||||
i *= 0.65;
|
||||
i *= 0.75;
|
||||
|
||||
return i;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue