From 639b8ec1a4b353cc0361a66291026ae1a90468e2 Mon Sep 17 00:00:00 2001 From: Patrice Mandin Date: Sat, 14 Jul 2007 00:07:37 +0000 Subject: [PATCH] Use correct function --- src/timer/mint/SDL_systimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timer/mint/SDL_systimer.c b/src/timer/mint/SDL_systimer.c index bef184cf0..711b5ecbb 100644 --- a/src/timer/mint/SDL_systimer.c +++ b/src/timer/mint/SDL_systimer.c @@ -131,7 +131,7 @@ SDL_SYS_TimerQuit(void) if (timer_installed) { /* Uninstall RunTimer vbl vector */ void *old_stack = (void *) Super(0); - SDL_AtariVblUninstall(RunTimer); + SDL_AtariVblUninstall(SDL_ThreadedTimerCheck); Super(old_stack); timer_installed = SDL_FALSE; }