mirror of
https://github.com/libretro/RetroArch
synced 2025-03-31 10:20:41 +00:00
(iOS) Build fix
This commit is contained in:
parent
6067deb1e9
commit
e94a3f06ea
@ -28,7 +28,7 @@
|
|||||||
|
|
||||||
static const void* const associated_module_key = &associated_module_key;
|
static const void* const associated_module_key = &associated_module_key;
|
||||||
|
|
||||||
static bool zlib_extract_callback(const char *name,
|
static bool zlib_extract_callback(const char *name, const char *valid_exts,
|
||||||
const uint8_t *cdata, unsigned cmode, uint32_t csize, uint32_t size,
|
const uint8_t *cdata, unsigned cmode, uint32_t csize, uint32_t size,
|
||||||
uint32_t crc32, void *userdata)
|
uint32_t crc32, void *userdata)
|
||||||
{
|
{
|
||||||
@ -56,7 +56,7 @@ static bool zlib_extract_callback(const char *name,
|
|||||||
write_file(path, cdata, size);
|
write_file(path, cdata, size);
|
||||||
break;
|
break;
|
||||||
case 8: // Deflate
|
case 8: // Deflate
|
||||||
zlib_inflate_data_to_file(path, cdata, csize, size, crc32);
|
zlib_inflate_data_to_file(path, valid_exts, cdata, csize, size, crc32);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user