mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- added Edward-san's fix for the turbo CCMD.
SVN r2998 (trunk)
This commit is contained in:
parent
332d9b9ad1
commit
2f06007ad4
1 changed files with 2 additions and 2 deletions
|
@ -240,9 +240,9 @@ CUSTOM_CVAR (Float, turbo, 100.f, 0)
|
|||
{
|
||||
self = 10.f;
|
||||
}
|
||||
else if (self > 256.f)
|
||||
else if (self > 255.f)
|
||||
{
|
||||
self = 256.f;
|
||||
self = 255.f;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue