1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +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:
Misa 2023-03-18 17:51:55 -07:00
parent d6bc319535
commit 05ed7e041c

View file

@ -294,7 +294,7 @@ end:
void Dispose(void)
{
stb_vorbis_close(vorbis);
VVV_freefunc(stb_vorbis_close, vorbis);
VVV_free(read_buf);
VVV_free(decoded_buf_playing);
VVV_free(decoded_buf_reserve);