From e0f1a3b9cffae518ad033ab757094ede44d12806 Mon Sep 17 00:00:00 2001 From: bushing Date: Sat, 6 Dec 2008 03:19:25 +0000 Subject: [PATCH] don't include stdafx.h on OS X git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1409 8ced0084-cf51-0410-be5f-012b33b47a6e --- .../Interpreter/Interpreter_Tables.cpp | 30 ++++++++++--------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_Tables.cpp b/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_Tables.cpp index 587bd7a3db..fd6594493d 100644 --- a/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_Tables.cpp +++ b/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_Tables.cpp @@ -1,14 +1,16 @@ -// __________________________________________________________________________________________________ -// F|RES and ector 2003-2005 -// -///////////////////////////////////////////////////////////////////////////////////////////////////// -// M O D U L E B E G I N /////////////////////////////////////////////////////////////////////////// -///////////////////////////////////////////////////////////////////////////////////////////////////// - -#include "stdafx.h" - -///////////////////////////////////////////////////////////////////////////////////////////////////// -// I M P L E M E N T A T I O N ////////////////////////////////////////////////////////////////////// -///////////////////////////////////////////////////////////////////////////////////////////////////// - -//remove +// __________________________________________________________________________________________________ +// F|RES and ector 2003-2005 +// +///////////////////////////////////////////////////////////////////////////////////////////////////// +// M O D U L E B E G I N /////////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////////////////////////////// + +#ifndef __APPLE__ +#include "stdafx.h" +#endif + +///////////////////////////////////////////////////////////////////////////////////////////////////// +// I M P L E M E N T A T I O N ////////////////////////////////////////////////////////////////////// +///////////////////////////////////////////////////////////////////////////////////////////////////// + +//remove