mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
More compile fixes for current gcc.
This commit is contained in:
parent
9c9b6714be
commit
e27db9f6b2
1 changed files with 2 additions and 2 deletions
|
@ -396,9 +396,9 @@ WriteMiptex (void)
|
|||
dmiptexlump_t *l;
|
||||
int i, len, res = -1;
|
||||
|
||||
(const char *)wad_list = ValueForKey (&entities[0], "_wad");
|
||||
wad_list = (char *) ValueForKey (&entities[0], "_wad");
|
||||
if (!wad_list || !wad_list[0]) {
|
||||
(const char *)wad_list = ValueForKey (&entities[0], "wad");
|
||||
wad_list = (char *) ValueForKey (&entities[0], "wad");
|
||||
if (!wad_list || !wad_list[0]) {
|
||||
printf ("WARNING: no wadfile specified\n");
|
||||
bsp->texdatasize = 0;
|
||||
|
|
Loading…
Reference in a new issue