Attempt prep work for 64 bit just in case.

If SDL2 fails, someone (not me) will have to try to
keep these updated.
This commit is contained in:
Jason Felds
2014-02-12 19:40:27 -05:00
parent 0715c38475
commit 9bbefe2240
4 changed files with 22 additions and 22 deletions
+3 -3
View File
@@ -129,10 +129,10 @@ void ArchHooks_MacOSX::Init()
RString ArchHooks_MacOSX::GetArchName() const
{
#if defined(__ppc__)
return "Mac OS X (ppc)";
#elif defined(__i386__)
#if defined(__i386__)
return "Mac OS X (i386)";
#elif defined(__x86_64__)
return "Mac OS X (x86_64)";
#else
#error What arch?
#endif