mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-03 15:39:46 +01:00
Use VVV_freefunc
to call stb_vorbis_close
I noticed that this call wasn't using VVV_freefunc. I missed it earlier
when going through Music.cpp and checking for instances when
VVV_freefunc should have been used
(a926ce9851
).
This commit is contained in:
parent
d6bc319535
commit
05ed7e041c
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ end:
|
||||||
|
|
||||||
void Dispose(void)
|
void Dispose(void)
|
||||||
{
|
{
|
||||||
stb_vorbis_close(vorbis);
|
VVV_freefunc(stb_vorbis_close, vorbis);
|
||||||
VVV_free(read_buf);
|
VVV_free(read_buf);
|
||||||
VVV_free(decoded_buf_playing);
|
VVV_free(decoded_buf_playing);
|
||||||
VVV_free(decoded_buf_reserve);
|
VVV_free(decoded_buf_reserve);
|
||||||
|
|
Loading…
Reference in a new issue