| 711 | } |
| 712 | |
| 713 | void TexturePack_Extract(const cc_string* url) { |
| 714 | if (url->length) DownloadAsync(url); |
| 715 | |
| 716 | if (String_Equals(url, &TexturePack_Url)) return; |
| 717 | String_Copy(&TexturePack_Url, url); |
| 718 | TexturePack_ExtractCurrent(false); |
| 719 | } |
| 720 | |
| 721 | static struct TextureEntry* entries_head; |
| 722 | static struct TextureEntry* entries_tail; |
no test coverage detected