| 2658 | } |
| 2659 | |
| 2660 | void audio2changecallback(int index) { |
| 2661 | if (index == 0) { |
| 2662 | AudioTauntPilot->set_multiplayer_data(NULL, NULL, ""); |
| 2663 | return; |
| 2664 | } else { |
| 2665 | index--; |
| 2666 | char *p = GetStringInList(index, AudioTauntPilotSndInfo->files, AudioTauntPilotSndInfo->needed_size); |
| 2667 | if (p) { |
| 2668 | AudioTauntPilot->set_multiplayer_data(NULL, NULL, p); |
| 2669 | } |
| 2670 | } |
| 2671 | } |
| 2672 | |
| 2673 | void audio3changecallback(int index) { |
| 2674 | if (index == 0) { |
nothing calls this directly
no test coverage detected