mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-01-31 12:30:32 +00:00
- fixed allocation mismatch in WildMidi.
This commit is contained in:
parent
8bb4457a62
commit
9ef338282d
1 changed files with 1 additions and 1 deletions
|
@ -2112,7 +2112,7 @@ static void freeMDI(struct _mdi *mdi) {
|
||||||
free(mdi->tmp_info);
|
free(mdi->tmp_info);
|
||||||
_WM_free_reverb(mdi->reverb);
|
_WM_free_reverb(mdi->reverb);
|
||||||
free(mdi->mix_buffer);
|
free(mdi->mix_buffer);
|
||||||
free(mdi);
|
delete mdi;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int *WM_Mix_Linear(midi * handle, int * buffer, unsigned long int count)
|
static int *WM_Mix_Linear(midi * handle, int * buffer, unsigned long int count)
|
||||||
|
|
Loading…
Reference in a new issue