| 2756 | } |
| 2757 | |
| 2758 | static void TexPackOverlay_YesClick(void* screen, void* widget) { |
| 2759 | struct TexPackOverlay* s = (struct TexPackOverlay*)screen; |
| 2760 | TexturePack_Extract(&s->url); |
| 2761 | if (TexPackOverlay_IsAlways(s, widget)) TextureUrls_Accept(&s->url); |
| 2762 | Gui_Remove((struct Screen*)s); |
| 2763 | |
| 2764 | if (TexPackOverlay_IsAlways(s, widget)) CPE_SendNotifyAction(NOTIFY_ACTION_TEXTURE_PROMPT_RESPONDED, 3); |
| 2765 | else CPE_SendNotifyAction(NOTIFY_ACTION_TEXTURE_PROMPT_RESPONDED, 2); |
| 2766 | } |
| 2767 | |
| 2768 | static void TexPackOverlay_NoClick(void* screen, void* widget) { |
| 2769 | struct TexPackOverlay* s = (struct TexPackOverlay*)screen; |
nothing calls this directly
no test coverage detected