mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 15:09:57 +00:00
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...
This commit is contained in:
parent
246b515a86
commit
0580112940
1 changed files with 3 additions and 1 deletions
|
@ -6,7 +6,9 @@
|
||||||
#include <clocale>
|
#include <clocale>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <thread>
|
#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.
|
// VFS includes must be before glad as they will conflict with Windows file api, which uses defines.
|
||||||
#include "applets/error.h"
|
#include "applets/error.h"
|
||||||
|
|
Loading…
Reference in a new issue