diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2017-06-27 00:58:12 +0200 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2017-06-27 00:58:12 +0200 |
| commit | f9f9924566e82aae02817a2fbc7962764f5418c3 (patch) | |
| tree | 8f015dab806edb736cce9ca596d3b9849c529231 /Source/System.c | |
| parent | d1f55e8b45df2dfd84bdde3e2566ef14c9ba40f1 (diff) | |
| download | airport-f9f9924566e82aae02817a2fbc7962764f5418c3.tar.gz | |
* Reduced tileset sprite size from 64x64 to 64x48.
* Modified rendering functions to keep up with this size reduction.
* Sprites in TIM have been reordered inside VRAM.
* Other minor changes.
Diffstat (limited to 'Source/System.c')
| -rw-r--r-- | Source/System.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Source/System.c b/Source/System.c index bd3c0c0..1c76c37 100644 --- a/Source/System.c +++ b/Source/System.c @@ -722,9 +722,21 @@ void SystemUserTimersHandler(void) void SystemTimerRestart(TYPE_TIMER* timer) { timer->time = timer->orig_time; - dprintf("Time set to %d seconds, timer 0x%08X\n", timer->time, timer); } +/* ********************************************************************* + * + * @name void SystemTimerRemove(TYPE_TIMER* timer) + * + * @author: Xavier Del Campo + * + * @brief: Resets timer parameters to default values so timer instance + * can be recycled. + * + * @remarks: + * + * *********************************************************************/ + void SystemTimerRemove(TYPE_TIMER* timer) { timer->time = 0; |
