mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- fixed: Dehacked's 'Speed' value should be treated as signed when being assigned to a double variable.
This commit is contained in:
parent
c428e376cd
commit
fa22acca5d
1 changed files with 1 additions and 1 deletions
|
@ -921,7 +921,7 @@ static int PatchThing (int thingy)
|
|||
{
|
||||
if (stricmp (Line1, "Speed") == 0)
|
||||
{
|
||||
info->Speed = val; // handle fixed point later.
|
||||
info->Speed = (signed long)val; // handle fixed point later.
|
||||
}
|
||||
else if (stricmp (Line1, "Width") == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue