| 2645 | pilot *AudioTauntPilot; |
| 2646 | tCustomListInfo *AudioTauntPilotSndInfo; |
| 2647 | void audio1changecallback(int index) { |
| 2648 | if (index == 0) { |
| 2649 | AudioTauntPilot->set_multiplayer_data(NULL, ""); |
| 2650 | return; |
| 2651 | } else { |
| 2652 | index--; |
| 2653 | char *p = GetStringInList(index, AudioTauntPilotSndInfo->files, AudioTauntPilotSndInfo->needed_size); |
| 2654 | if (p) { |
| 2655 | AudioTauntPilot->set_multiplayer_data(NULL, p); |
| 2656 | } |
| 2657 | } |
| 2658 | } |
| 2659 | |
| 2660 | void audio2changecallback(int index) { |
| 2661 | if (index == 0) { |
nothing calls this directly
no test coverage detected