diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-08-06 19:02:48 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-08-06 19:02:48 +0100 |
commit | f7e027a1da1f44c1ef68f0532f797343e7212073 (patch) | |
tree | a72c1457a97d38e44221137c64243b4d7ebc65c6 /src/sound.c | |
parent | 1fd6d2a62b971a568eddb100ac8481fd69f27546 (diff) | |
download | gold-mine-run-f7e027a1da1f44c1ef68f0532f797343e7212073.tar.gz gold-mine-run-f7e027a1da1f44c1ef68f0532f797343e7212073.zip |
Release memory
Diffstat (limited to 'src/sound.c')
-rw-r--r-- | src/sound.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound.c b/src/sound.c index aeeeeb8..a3f38b8 100644 --- a/src/sound.c +++ b/src/sound.c @@ -101,7 +101,7 @@ void sound_free() Player_Free(music); for (uint8_t i = 0; i < EFX_CNT; i++) - if (!efx[i].s) + if (efx[i].s) Sample_Free(efx[i].s); MikMod_Exit(); |