mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-28 06:52:57 +00:00
fix a bug when reading 24 bit soundfonts
This commit is contained in:
parent
29d194ed6d
commit
97a4e1aa1c
1 changed files with 1 additions and 1 deletions
|
@ -2432,7 +2432,7 @@ process_sdta (unsigned int size, SFData * sf, void * fd, const fluid_file_callba
|
|||
sdtachunk_size = chunk.size;
|
||||
sf->samplesize = chunk.size;
|
||||
|
||||
FSKIP (chunk.size, fd, fcbs);
|
||||
FSKIP (size, fd, fcbs);
|
||||
|
||||
return (OK);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue