From 3c24c0a2fba23b99e6a85c2515a2e8cdf9b1f60b Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sun, 15 Sep 2002 11:46:06 +0000 Subject: [PATCH] Add PIT_TICK_RATE define Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@270 --- include/timer.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/timer.h b/include/timer.h index 95faaa07..58ffdc49 100644 --- a/include/timer.h +++ b/include/timer.h @@ -22,6 +22,9 @@ #include extern Bit32u LastTicks; + +#define PIT_TICK_RATE 1193182 + #define GetTicks() SDL_GetTicks() extern bool TimerAgain; @@ -50,6 +53,5 @@ void TIMER_CheckPIT(void); /* This will add ms ticks to support the timer handlers */ void TIMER_AddTicks(Bit32u ticks); - #endif