| 587 | #include "../misc/ps1/classicubezip.h" |
| 588 | |
| 589 | static cc_result ExtractFromFile(const cc_string* path) { |
| 590 | struct Stream stream; |
| 591 | Stream_ReadonlyMemory(&stream, ccTextures, ccTextures_length); |
| 592 | |
| 593 | return ExtractFrom(&stream, path); |
| 594 | } |
| 595 | #elif !defined CC_BUILD_FILESYSTEM |
| 596 | /* E.g. GBA/32X don't support textures at all */ |
| 597 | static cc_result ExtractFromFile(const cc_string* path) { |
no test coverage detected