comparison src/timer/mint/SDL_systimer.c @ 2193:e857f02e709e

Use correct function
author Patrice Mandin <patmandin@gmail.com>
date Sat, 14 Jul 2007 00:07:37 +0000
parents 2c835d58faad
children 99210400e8b9
comparison
equal deleted inserted replaced
2192:fc56a720cdba 2193:e857f02e709e
129 SDL_SYS_TimerQuit(void) 129 SDL_SYS_TimerQuit(void)
130 { 130 {
131 if (timer_installed) { 131 if (timer_installed) {
132 /* Uninstall RunTimer vbl vector */ 132 /* Uninstall RunTimer vbl vector */
133 void *old_stack = (void *) Super(0); 133 void *old_stack = (void *) Super(0);
134 SDL_AtariVblUninstall(RunTimer); 134 SDL_AtariVblUninstall(SDL_ThreadedTimerCheck);
135 Super(old_stack); 135 Super(old_stack);
136 timer_installed = SDL_FALSE; 136 timer_installed = SDL_FALSE;
137 } 137 }
138 read_hz200_from_vbl = SDL_FALSE; 138 read_hz200_from_vbl = SDL_FALSE;
139 } 139 }