From 79f9d333b38416091731005c6b75999a2b7469df Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sat, 7 Sep 2002 12:06:43 +0000 Subject: [PATCH] New timer code Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@263 --- include/timer.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/timer.h b/include/timer.h index a481d592..95faaa07 100644 --- a/include/timer.h +++ b/include/timer.h @@ -24,6 +24,8 @@ extern Bit32u LastTicks; #define GetTicks() SDL_GetTicks() +extern bool TimerAgain; + typedef void (*TIMER_TickHandler)(Bitu ticks); typedef void (*TIMER_MicroHandler)(void); typedef void (*TIMER_DelayHandler)(void);