diff options
Diffstat (limited to 'demos/Win32-MSVS')
-rw-r--r-- | demos/Win32-MSVS/chcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/Win32-MSVS/chcore.c b/demos/Win32-MSVS/chcore.c index 3915d6271..99876b8d6 100644 --- a/demos/Win32-MSVS/chcore.c +++ b/demos/Win32-MSVS/chcore.c @@ -62,7 +62,7 @@ void ChkIntSources(void) { QueryPerformanceCounter(&n);
if (n.QuadPart > nextcnt.QuadPart) {
nextcnt.QuadPart += slice.QuadPart;
- chSchTimerHandlerI();
+ chSysTimerHandlerI();
if (chSchRescRequiredI())
chSchDoRescheduleI();
}
|