DC: Use OSystem's 'slots' for timer/savefile manager & fsFactory

This commit is contained in:
Max Horn 2011-06-06 23:26:09 +02:00
parent 04afdf7c7d
commit c30018ef37
4 changed files with 8 additions and 12 deletions

View file

@ -192,8 +192,8 @@ bool OSystem_Dreamcast::pollEvent(Common::Event &event)
{
unsigned int t = Timer();
if (_timer != NULL)
_timer->handler();
if (_timerManager != NULL)
((DefaultTimerManager *)_timerManager)->handler();
if (((int)(t-_devpoll))<0)
return false;