mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-31 21:50:48 +00:00
Merge branch 'master' into fix-fixedrem
This commit is contained in:
commit
14cd7a5a0c
2 changed files with 7 additions and 3 deletions
|
@ -234,8 +234,7 @@ ifdef GCC61
|
||||||
WFLAGS+=-Wno-tautological-compare -Wno-error=tautological-compare
|
WFLAGS+=-Wno-tautological-compare -Wno-error=tautological-compare
|
||||||
endif
|
endif
|
||||||
ifdef GCC71
|
ifdef GCC71
|
||||||
WFLAGS+=-Wno-error=implicit-fallthrough
|
WFLAGS+=-Wimplicit-fallthrough=4
|
||||||
WFLAGS+=-Wno-implicit-fallthrough
|
|
||||||
endif
|
endif
|
||||||
ifdef GCC81
|
ifdef GCC81
|
||||||
WFLAGS+=-Wno-error=format-overflow
|
WFLAGS+=-Wno-error=format-overflow
|
||||||
|
|
|
@ -752,9 +752,12 @@ void Got_Filetxpak(void)
|
||||||
{
|
{
|
||||||
INT32 filenum = netbuffer->u.filetxpak.fileid;
|
INT32 filenum = netbuffer->u.filetxpak.fileid;
|
||||||
fileneeded_t *file = &fileneeded[filenum];
|
fileneeded_t *file = &fileneeded[filenum];
|
||||||
char *filename = file->filename;
|
char *filename;
|
||||||
static INT32 filetime = 0;
|
static INT32 filetime = 0;
|
||||||
|
|
||||||
|
filename = va("%s", file->filename);
|
||||||
|
nameonly(filename);
|
||||||
|
|
||||||
if (!(strcmp(filename, "srb2.srb")
|
if (!(strcmp(filename, "srb2.srb")
|
||||||
&& strcmp(filename, "srb2.wad")
|
&& strcmp(filename, "srb2.wad")
|
||||||
&& strcmp(filename, "zones.dta")
|
&& strcmp(filename, "zones.dta")
|
||||||
|
@ -765,6 +768,8 @@ void Got_Filetxpak(void)
|
||||||
))
|
))
|
||||||
I_Error("Tried to download \"%s\"", filename);
|
I_Error("Tried to download \"%s\"", filename);
|
||||||
|
|
||||||
|
filename = file->filename;
|
||||||
|
|
||||||
if (filenum >= fileneedednum)
|
if (filenum >= fileneedednum)
|
||||||
{
|
{
|
||||||
DEBFILE(va("fileframent not needed %d>%d\n", filenum, fileneedednum));
|
DEBFILE(va("fileframent not needed %d>%d\n", filenum, fileneedednum));
|
||||||
|
|
Loading…
Reference in a new issue