diff options
author | Joseph-Eugene Winzer | 2017-08-22 22:28:36 +0200 |
---|---|---|
committer | Thierry Crozat | 2018-01-23 01:42:32 +0000 |
commit | a2f43c4eb6adb3e6c61cc4c1838707e8adb580c2 (patch) | |
tree | 88a89a999e7683de695b8de2a9254f1175bc64dc /engines | |
parent | 89059ff50d32bee187b5e03f8c720b17dc490cb2 (diff) | |
download | scummvm-rg350-a2f43c4eb6adb3e6c61cc4c1838707e8adb580c2.tar.gz scummvm-rg350-a2f43c4eb6adb3e6c61cc4c1838707e8adb580c2.tar.bz2 scummvm-rg350-a2f43c4eb6adb3e6c61cc4c1838707e8adb580c2.zip |
SUPERNOVA: Adds ticks to msec conversion macro
Diffstat (limited to 'engines')
-rw-r--r-- | engines/supernova/msn_def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/supernova/msn_def.h b/engines/supernova/msn_def.h index 7c596a2db4..93f4333d8e 100644 --- a/engines/supernova/msn_def.h +++ b/engines/supernova/msn_def.h @@ -523,6 +523,8 @@ struct Object { byte _direction; }; +#define ticksToMsec(x) (x * kMsecPerTick) + } #endif // MSN_DEF_H |