mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Update DUMB to revision ff84ff32fe1fc82926020feedf894c4fb5c37ccd (This now brings us up to date with the latest version on github, except I left
out the any file reader, SSE it filter, and the FIR resampler.) - Fixed serious error with MPT extension reading SVN r4117 (trunk)
This commit is contained in:
parent
3c50b1c14b
commit
45e9491eca
1 changed files with 1 additions and 1 deletions
|
@ -1484,7 +1484,7 @@ static sigdata_t *it_load_sigdata(DUMBFILE *f)
|
||||||
if ( !dumbfile_error( f ) && n < 10 )
|
if ( !dumbfile_error( f ) && n < 10 )
|
||||||
{
|
{
|
||||||
unsigned int mptx_id = dumbfile_igetl( f );
|
unsigned int mptx_id = dumbfile_igetl( f );
|
||||||
while ( mptx_id != DUMB_ID('M','P','T','S') )
|
while ( !dumbfile_error( f ) && mptx_id != DUMB_ID('M','P','T','S') )
|
||||||
{
|
{
|
||||||
unsigned int size = dumbfile_igetw( f );
|
unsigned int size = dumbfile_igetw( f );
|
||||||
switch (mptx_id)
|
switch (mptx_id)
|
||||||
|
|
Loading…
Reference in a new issue