diff options
Diffstat (limited to 'client/time.h')
-rw-r--r-- | client/time.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/time.h b/client/time.h index 253451d..30c8124 100644 --- a/client/time.h +++ b/client/time.h @@ -3,7 +3,10 @@ /** amount of parallel timers */ #define W2_CLIENT_TIMER_COUNT (4) extern unsigned long g_w2_client_timers[W2_CLIENT_TIMER_COUNT]; -typedef enum { W2_TIMER_PING = 0 } w2_e_client_timers; +typedef enum { + W2_TIMER_PING = 0, + W2_TIMER_UPDATE = 1, +} w2_e_client_timers; void w2_timer_start(w2_e_client_timers label); unsigned long w2_timer_end(w2_e_client_timers label); |