From 5d4fa37892689d99afd7ed765c0c2034e283188f Mon Sep 17 00:00:00 2001 From: nigel <> Date: Thu, 8 Oct 2009 09:20:51 +0000 Subject: [PATCH] Another build fix for changed Prefs methods --- BasiliskII/src/MacOSX/Emulator.mm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/BasiliskII/src/MacOSX/Emulator.mm b/BasiliskII/src/MacOSX/Emulator.mm index 67790510..61d191ff 100644 --- a/BasiliskII/src/MacOSX/Emulator.mm +++ b/BasiliskII/src/MacOSX/Emulator.mm @@ -35,7 +35,8 @@ #import "prefs.h" #import "timer.h" -#undef check // memory.h defines a check macro, clashes with an OS X one? +#undef check // memory.h defines a check macro, + // which may clash with an OS X one on 10.1 or 10.2 #import "cpu_emulation.h" #define DEBUG 0 @@ -218,7 +219,7 @@ int argc = 0; char **argv; - PrefsInit(argc, argv); + PrefsInit(NULL, argc, argv); SysInit(); emul = [NNThread new];