fix umx export table read order. doesn't affect our umx playback, but correctness is good.

git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@887 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2014-01-12 18:27:33 +00:00
parent a1dc252423
commit e14b5aca86
1 changed files with 1 additions and 1 deletions

View File

@ -240,8 +240,8 @@ static int probe_umx (fshandle_t *f, const struct upkg_hdr *hdr,
FS_fread(buf, 1, 64, f);
get_fci(&buf[idx], &idx); /* skip class_index */
if (hdr->file_version >= 60) idx += 4; /* skip int32 package_index */
get_fci(&buf[idx], &idx); /* skip super_index */
if (hdr->file_version >= 60) idx += 4; /* skip int32 package_index */
get_fci(&buf[idx], &idx); /* skip object_name */
idx += 4; /* skip int32 object_flags */