some cleanup, changed type timer procedure - passed Scumm pointer

svn-id: r4743
This commit is contained in:
Paweł Kołodziejski 2002-08-14 16:18:45 +00:00
parent 7f3ba176e1
commit f2faf9063b
8 changed files with 27 additions and 42 deletions

View file

@ -38,10 +38,9 @@
extern void GraphicsOff(void);
#endif
int autosave(int interval) /* Not in class to prevent being bound */
void autosave(Scumm * scumm) /* Not in class to prevent being bound */
{
g_scumm->_doAutosave = true;
return interval;
scumm->_doAutosave = true;
}
void Scumm::initRandSeeds()