diff options
| author | Tal Hayon <talhayon1@gmail.com> | 2022-04-01 18:19:56 +0300 |
|---|---|---|
| committer | Tal Hayon <talhayon1@gmail.com> | 2022-04-01 18:19:56 +0300 |
| commit | d6d7916a460acb7190bd353b3ed86eb85f3a6002 (patch) | |
| tree | b6fae3edaf0c04001089806de650b6e7cead8207 /src/script.c | |
| parent | 9233701a5df02847510df90937f25bccc46eebd2 (diff) | |
Use fixed point macros where possible
Diffstat (limited to 'src/script.c')
| -rw-r--r-- | src/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script.c b/src/script.c index 46ffb747..92fad99a 100644 --- a/src/script.c +++ b/src/script.c @@ -386,7 +386,7 @@ void HandleEntity0x82Actions(Entity* entity) { } break; case 1 << 5: - GravityUpdate(entity, 0x2000); + GravityUpdate(entity, Q_8_8(32.0)); break; } } |
