mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
Added missing _access() macro for POSIX targets
src/textures/hires/hirestex.cpp:338:8: error: use of undeclared identifier '_access'
This commit is contained in:
parent
472fdb26ad
commit
a434f9bc91
1 changed files with 5 additions and 0 deletions
|
@ -36,6 +36,11 @@
|
|||
#include "bitmap.h"
|
||||
#include "textures.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
#define _access(a,b) access(a,b)
|
||||
#endif
|
||||
|
||||
static int Doom2Wad = -1;
|
||||
|
||||
// quick'n dirty hack. Should be enough here...
|
||||
|
|
Loading…
Reference in a new issue