diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2017-12-26 22:18:37 +0100 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2017-12-26 22:18:37 +0100 |
| commit | 4eaa6c091f97ca3455b2ae48a5f68867c0f7768e (patch) | |
| tree | 79ae89ae5b7399c774ae6fcb792c109a725e1af8 /Source/Timer.h | |
| parent | f06d582d63b1f91e48ecb17a11987217144c5c79 (diff) | |
| download | airport-4eaa6c091f97ca3455b2ae48a5f68867c0f7768e.tar.gz | |
* Slight optimization: all comparations against true are now compared against != false.
+ Added a provisional background during gameplay (still WIP).
* Map editor now allows creating a map.
Diffstat (limited to 'Source/Timer.h')
| -rw-r--r-- | Source/Timer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Timer.h b/Source/Timer.h index 6b11d9a..323221d 100644 --- a/Source/Timer.h +++ b/Source/Timer.h @@ -1,5 +1,5 @@ -#ifndef __TIMER_HEADER__ -#define __TIMER_HEADER__ +#ifndef TIMER_HEADER__ +#define TIMER_HEADER__ /* ************************************** * Includes * @@ -27,10 +27,10 @@ void TimerReset(void); // To be called every cycle (i.e.: inside GfxDrawScene() ). void TimerHandler(void); -// Sets timer remaining time to initial value. +// Sets timer remaining time to its initial value. void TimerRestart(TYPE_TIMER* timer); // Flushes a timer pointed to by timer. void TimerRemove(TYPE_TIMER* timer); -#endif // __TIMER_HEADER__ +#endif // TIMER_HEADER__ |
