mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-27 22:42:57 +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)
|
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)
|
else if (stricmp (Line1, "Width") == 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue