mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-02-20 11:03:09 +00:00
Use FILENAME_MAX for MAX_OSPATH
Fixes compilation with fucking MSVC.
This commit is contained in:
parent
7a5b8b1ec0
commit
57e964f369
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ If you have questions concerning this license or the applicable additional terms
|
|||
|
||||
static const ID_TIME_T FILE_NOT_FOUND_TIMESTAMP = 0xFFFFFFFF;
|
||||
static const int MAX_PURE_PAKS = 128;
|
||||
static const int MAX_OSPATH = PATH_MAX;
|
||||
static const int MAX_OSPATH = FILENAME_MAX;
|
||||
|
||||
// modes for OpenFileByMode. used as bit mask internally
|
||||
typedef enum {
|
||||
|
|
Loading…
Reference in a new issue