diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2017-05-25 07:38:58 +0200 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2017-05-25 07:38:58 +0200 |
| commit | 656eec576e46bf80da052710508e93b26ec8bdb5 (patch) | |
| tree | f54106e08d0b2d862c1ffca1c351045eb33a9196 /Source/System.c | |
| parent | 8d2e08d7448e6c3514a747c0dff5db5f27eb8788 (diff) | |
* Implemented remaining time for flights.
* Initial STATE_UNBOARDING implementation. Still some work to do.
* Added score logic.
Diffstat (limited to 'Source/System.c')
| -rw-r--r-- | Source/System.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/System.c b/Source/System.c index 8005fa8..5ecafbb 100644 --- a/Source/System.c +++ b/Source/System.c @@ -249,9 +249,9 @@ void SystemRunTimers(void) #ifdef _PAL_MODE_ SystemCheckTimer(&hundred_ms_timer, &last_100_ms_tick, 2 /* 2 * 50 ms = 100 ms */); SystemCheckTimer(&five_hundred_ms_timer, &last_500_ms_tick, 10 /* 10 * 50 ms = 500 ms */); -#else +#else // _PAL_MODE_ SystemCheckTimer(&hundred_ms_timer, &last_100_ms_tick, 3); -#endif //VMODE_PAL +#endif // _PAL_MODE_ } |
