| 2684 | } |
| 2685 | |
| 2686 | void audio4changecallback(int index) { |
| 2687 | if (index == 0) { |
| 2688 | AudioTauntPilot->set_multiplayer_data(NULL, NULL, NULL, NULL, NULL, ""); |
| 2689 | return; |
| 2690 | } else { |
| 2691 | index--; |
| 2692 | char *p = GetStringInList(index, AudioTauntPilotSndInfo->files, AudioTauntPilotSndInfo->needed_size); |
| 2693 | if (p) { |
| 2694 | AudioTauntPilot->set_multiplayer_data(NULL, NULL, NULL, NULL, NULL, p); |
| 2695 | } |
| 2696 | } |
| 2697 | } |
| 2698 | |
| 2699 | #define TAUNT_MENU_W 512 |
| 2700 | #define TAUNT_MENU_H 384 |
nothing calls this directly
no test coverage detected