mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Accept "BUILDART" prepended to ART files
git-svn-id: https://svn.eduke32.com/eduke32@6755 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ae0b6e87be
commit
fba53b144a
1 changed files with 17 additions and 1 deletions
|
@ -287,6 +287,22 @@ 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);
|
||||
|
@ -519,7 +535,7 @@ static int32_t E_ReadArtFileOfID(int32_t tilefilei)
|
|||
}
|
||||
else
|
||||
{
|
||||
int offscount = 4+4+4+4+(local.numtiles<<3);
|
||||
int offscount = ktell(fil);
|
||||
|
||||
for (bssize_t i=local.tilestart; i<=local.tileend; ++i)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue