mirror of
https://github.com/id-Software/DOOM-3-BFG.git
synced 2024-12-02 00:41:51 +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;
|
||||
short width;
|
||||
short height;
|
||||
void **columndirectory; // OBSOLETE
|
||||
|
||||
// FR: Replaced obsolete void **columndirectory with int
|
||||
// for 64-bit compatibility
|
||||
int columndirectory; // OBSOLETE
|
||||
short patchcount;
|
||||
mappatch_t patches[1];
|
||||
} maptexture_t;
|
||||
|
|
Loading…
Reference in a new issue