1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

added comment

This commit is contained in:
spacek531
2017-07-02 03:55:56 -07:00
committed by Ted John
parent cbe154f63b
commit ec0f35fe7b

View File

@@ -247,6 +247,8 @@ private:
_waitCounter = 1;
break;
case TITLE_SCRIPT_WAIT:
// The waitCounter is measured in 25-ms game ticks. Previously it was seconds * 40 ticks/second, now it is ms / 25 ms/tick
_waitCounter = Math::Min<sint32>(1, Math::Ceil<sint32>(command->Seconds / UPDATE_TIME_MS));
break;
case TITLE_SCRIPT_LOADMM: