taunt_PlayTauntFile Given a path to an .osf file, it will play it
| 94 | // |
| 95 | // Given a path to an .osf file, it will play it |
| 96 | bool taunt_PlayTauntFile(const char *filename) { |
| 97 | if (!Audio_taunts_enabled) |
| 98 | return false; |
| 99 | |
| 100 | int ret = StreamPlay(filename, (MAX_GAME_VOLUME / 2.0f), 0); |
| 101 | return true; |
| 102 | } |
| 103 | |
| 104 | // taunt_PlayPlayerTaunt |
| 105 | // |
no test coverage detected