From da828ffc731b1569469eff6d06d5083c8e4b0182 Mon Sep 17 00:00:00 2001 From: asvitkine <> Date: Tue, 27 Jul 2010 02:55:09 +0000 Subject: [PATCH] Fix prefs_macosx.mm compile issue with Snow Leopard. --- SheepShaver/src/MacOSX/prefs_macosx.mm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SheepShaver/src/MacOSX/prefs_macosx.mm b/SheepShaver/src/MacOSX/prefs_macosx.mm index 779ad629..7bda2b53 100644 --- a/SheepShaver/src/MacOSX/prefs_macosx.mm +++ b/SheepShaver/src/MacOSX/prefs_macosx.mm @@ -24,6 +24,9 @@ #include "sysdeps.h" +// The _UINT64 define is needed to guard against a typedef mismatch with Snow Leopard headers. +#define _UINT64 + #include #include "VMSettingsController.h"