mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00:00
Merge pull request #787 from Bigpet/unixtypo
unix preprocessor define typo fixed
This commit is contained in:
commit
c51e52614e
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ void InitProcTable()
|
|||
#undef OPENGL_PROC
|
||||
#undef OPENGL_PROC2
|
||||
#endif
|
||||
#ifdef __UNIX__
|
||||
#ifdef __unix__
|
||||
glewExperimental = true;
|
||||
glewInit();
|
||||
#endif
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
#include <wx/msw/wrapwin.h>
|
||||
#endif
|
||||
|
||||
#ifdef __UNIX__
|
||||
#ifdef __unix__
|
||||
#include <X11/Xlib.h>
|
||||
#endif
|
||||
|
||||
|
@ -180,7 +180,7 @@ void Rpcs3App::SendDbgCommand(DbgCommand id, CPUThread* thr)
|
|||
|
||||
Rpcs3App::Rpcs3App()
|
||||
{
|
||||
#if defined(__UNIX__) && !defined(__APPLE__)
|
||||
#if defined(__unix__) && !defined(__APPLE__)
|
||||
XInitThreads();
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue