Hack Misc.cpp into building on OS X.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7362 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Soren Jorvang 2011-03-16 22:58:24 +00:00
parent 571013acd8
commit 9198e83ae1
2 changed files with 5 additions and 1 deletions

View File

@ -17,6 +17,10 @@
#include "Common.h"
#ifdef __APPLE__
#define __thread
#endif
// Generic function to get last error message.
// Call directly after the command or use the error num.
// This function might change the error code.

View File

@ -259,4 +259,4 @@ void VideoSoftware::UpdateFPSDisplay(const char *text)
OpenGL_SetWindowText(temp);
}
}
}