mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-30 00:34:56 +00:00
Add string.h, fix decals with unsigned char
This commit is contained in:
parent
2c755778f4
commit
7d1df4c097
@ -42,6 +42,7 @@ GNU General Public License for more details.
|
||||
#include <dlfcn.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
|
||||
#if defined(__APPLE__)
|
||||
#include <sys/syslimits.h>
|
||||
|
@ -80,9 +80,9 @@ typedef struct
|
||||
int filepos; // file offset in WAD
|
||||
int disksize; // compressed or uncompressed
|
||||
int size; // uncompressed
|
||||
char type; // TYP_*
|
||||
char attribs; // file attribs
|
||||
char img_type; // IMG_*
|
||||
signed char type; // TYP_*
|
||||
signed char attribs; // file attribs
|
||||
signed char img_type; // IMG_*
|
||||
char pad;
|
||||
char name[WAD3_NAMELEN]; // must be null terminated
|
||||
} dlumpinfo_t;
|
||||
|
Loading…
x
Reference in New Issue
Block a user