mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed allocation mismatch in WildMidi.
This commit is contained in:
parent
94e222afef
commit
f221a2bdb4
1 changed files with 1 additions and 1 deletions
|
@ -2105,7 +2105,7 @@ static void freeMDI(struct _mdi *mdi) {
|
|||
free(mdi->tmp_info);
|
||||
_WM_free_reverb(mdi->reverb);
|
||||
free(mdi->mix_buffer);
|
||||
free(mdi);
|
||||
delete mdi;
|
||||
}
|
||||
|
||||
static int *WM_Mix_Linear(midi * handle, int * buffer, unsigned long int count)
|
||||
|
|
Loading…
Reference in a new issue