| 490 | cc_bool TexturePack_DefaultMissing; |
| 491 | |
| 492 | void TexturePack_SetDefault(const cc_string* texPack) { |
| 493 | TexturePack_Path.length = 0; |
| 494 | String_Format1(&TexturePack_Path, "texpacks/%s", texPack); |
| 495 | Options_Set(OPT_DEFAULT_TEX_PACK, texPack); |
| 496 | } |
| 497 | |
| 498 | cc_result TexturePack_ExtractDefault(DefaultZipCallback callback, const char** default_path) { |
| 499 | cc_result res = ReturnCode_FileNotFound; |
no test coverage detected