mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-03-02 06:42:41 +00:00
- disabled negative gravity check.
According to reports on the forum this does not cause bad behavior.
This commit is contained in:
parent
6ba3eba4d3
commit
75b90cdbf2
1 changed files with 1 additions and 1 deletions
|
@ -955,7 +955,7 @@ DEFINE_PROPERTY(gravity, F, Actor)
|
|||
{
|
||||
PROP_DOUBLE_PARM(i, 0);
|
||||
|
||||
if (i < 0) I_Error ("Gravity must not be negative.");
|
||||
//if (i < 0) I_Error ("Gravity must not be negative.");
|
||||
defaults->Gravity = i;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue