Improve file loading

git-svn-id: https://svn.eduke32.com/eduke32@6757 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2018-03-09 03:10:53 +00:00
parent f21d36403f
commit bfc6b7589e
1 changed files with 0 additions and 16 deletions

View File

@ -287,22 +287,6 @@ int32_t E_ReadArtFileHeader(int32_t const fil, char const * const fn, artheader_
{
int32_t artversion;
kread(fil, &artversion, 4); artversion = B_LITTLE32(artversion);
if (artversion == B_LITTLE32(0x4c495542))
{
kread(fil, &artversion, 4); artversion = B_LITTLE32(artversion);
if (artversion == B_LITTLE32(0x54524144))
{
kread(fil, &artversion, 4); artversion = B_LITTLE32(artversion);
}
else
{
initprintf("loadpics: Invalid art file, %s\n", fn);
kclose(fil);
return 1;
}
}
if (artversion != 1)
{
initprintf("loadpics: Invalid art file version in %s\n", fn);