| 2671 | } |
| 2672 | |
| 2673 | void audio3changecallback(int index) { |
| 2674 | if (index == 0) { |
| 2675 | AudioTauntPilot->set_multiplayer_data(NULL, NULL, NULL, NULL, ""); |
| 2676 | return; |
| 2677 | } else { |
| 2678 | index--; |
| 2679 | char *p = GetStringInList(index, AudioTauntPilotSndInfo->files, AudioTauntPilotSndInfo->needed_size); |
| 2680 | if (p) { |
| 2681 | AudioTauntPilot->set_multiplayer_data(NULL, NULL, NULL, NULL, p); |
| 2682 | } |
| 2683 | } |
| 2684 | } |
| 2685 | |
| 2686 | void audio4changecallback(int index) { |
| 2687 | if (index == 0) { |
nothing calls this directly
no test coverage detected