mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-03 09:22:45 +00:00
Replaced obsolete pointer in maptexture_t with int for 64-bit compatibility
This commit is contained in:
parent
c9f19c03b8
commit
cf15f4d39d
1 changed files with 4 additions and 1 deletions
|
@ -348,7 +348,10 @@ typedef struct
|
||||||
int masked;
|
int masked;
|
||||||
short width;
|
short width;
|
||||||
short height;
|
short height;
|
||||||
void **columndirectory; // OBSOLETE
|
|
||||||
|
// FR: Replaced obsolete void **columndirectory with int
|
||||||
|
// for 64-bit compatibility
|
||||||
|
int columndirectory; // OBSOLETE
|
||||||
short patchcount;
|
short patchcount;
|
||||||
mappatch_t patches[1];
|
mappatch_t patches[1];
|
||||||
} maptexture_t;
|
} maptexture_t;
|
||||||
|
|
Loading…
Reference in a new issue