Răsfoiți Sursa

Guard unistd.h with MacOS only macro

Fix compile error on Windows caused by #4877
Weird, I thought I saw this guard during the code review...
Weiyi Wang 7 ani în urmă
părinte
comite
0580112940
1 a modificat fișierele cu 3 adăugiri și 1 ștergeri
  1. 3 1
      src/yuzu/main.cpp

+ 3 - 1
src/yuzu/main.cpp

@@ -6,7 +6,9 @@
 #include <clocale>
 #include <memory>
 #include <thread>
-#include <unistd.h>
+#ifdef __APPLE__
+#include <unistd.h> // for chdir
+#endif
 
 // VFS includes must be before glad as they will conflict with Windows file api, which uses defines.
 #include "applets/error.h"