mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
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:
parent
a1dc252423
commit
e14b5aca86
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Reference in a new issue