aboutsummaryrefslogtreecommitdiff
path: root/mac
diff options
context:
space:
mode:
Diffstat (limited to 'mac')
-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;
}