mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03: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:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user