aboutsummaryrefslogtreecommitdiff
path: root/mac/mac.cpp
diff options
context:
space:
mode:
authorPaweł Kołodziejski2002-08-14 16:18:45 +0000
committerPaweł Kołodziejski2002-08-14 16:18:45 +0000
commitf2faf9063bda1acc1b9efd8bd1e5bc8b4af4a98c (patch)
treebb879050930189d3ffe03e77466fa344f99747d9 /mac/mac.cpp
parent7f3ba176e1c5ca1e816e0f55c6fbf76c77b67d6c (diff)
downloadscummvm-rg350-f2faf9063bda1acc1b9efd8bd1e5bc8b4af4a98c.tar.gz
scummvm-rg350-f2faf9063bda1acc1b9efd8bd1e5bc8b4af4a98c.tar.bz2
scummvm-rg350-f2faf9063bda1acc1b9efd8bd1e5bc8b4af4a98c.zip
some cleanup, changed type timer procedure - passed Scumm pointer
svn-id: r4743
Diffstat (limited to 'mac/mac.cpp')
-rw-r--r--mac/mac.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/mac/mac.cpp b/mac/mac.cpp
index 7a6397069a..f22d72666b 100644
--- a/mac/mac.cpp
+++ b/mac/mac.cpp
@@ -195,7 +195,7 @@ private:
void blit_to_screen();
void update_rects();
- static uint32 autosave(uint32);
+ static void autosave(Scumm * scumm);
UInt8 *buffer[2];
CmpSoundHeader header;
@@ -608,9 +608,9 @@ OSystem *OSystem_MAC::create(int gfx_mode, bool full_screen) {
return syst;
}
-uint32 OSystem_MAC::autosave(uint32 interval)
+void OSystem_MAC::autosave(Scumm * scumm)
{
- g_scumm->_doAutosave = true;
+ scumm->_doAutosave = true;
return interval;
}