mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 15:22:16 +00:00
- Missing include again due to the VS preprocessor.
This commit is contained in:
parent
d8a1d1b89c
commit
9a4ae6eb80
1 changed files with 6 additions and 1 deletions
|
@ -24,6 +24,12 @@
|
|||
**
|
||||
*/
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#include <io.h>
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#include "w_wad.h"
|
||||
#include "m_png.h"
|
||||
#include "sbar.h"
|
||||
|
@ -32,7 +38,6 @@
|
|||
#include "bitmap.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#define _access(a,b) access(a,b)
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue