| 1164 | } |
| 1165 | |
| 1166 | void effects_cleanup_sfx() |
| 1167 | { |
| 1168 | DWORD i; |
| 1169 | |
| 1170 | FreeMonsterSnd(); |
| 1171 | |
| 1172 | for (i = 0; i < sizeof(sgSFX) / sizeof(TSFX); i++) { |
| 1173 | if (sgSFX[i].pSnd) { |
| 1174 | sound_file_cleanup(sgSFX[i].pSnd); |
| 1175 | sgSFX[i].pSnd = NULL; |
| 1176 | } |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | void stream_update() |
| 1181 | { |
nothing calls this directly
no test coverage detected