mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 03:32:46 +00:00
Griffin buildfixes
This commit is contained in:
parent
dbad3afc3a
commit
61c3de1f6a
@ -54,12 +54,16 @@ ALGORITHMS
|
||||
/*============================================================
|
||||
ARCHIVE FILE
|
||||
============================================================ */
|
||||
#include "../libretro-common/file/archive_file.c"
|
||||
|
||||
#ifdef HAVE_ZLIB
|
||||
#include "../libretro-common/file/archive_file.c"
|
||||
#include "../libretro-common/file/archive_file_zlib.c"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_7ZIP
|
||||
#include "../libretro-common/file/archive_file_7z.c"
|
||||
#endif
|
||||
|
||||
/*============================================================
|
||||
ENCODINGS
|
||||
============================================================ */
|
||||
|
@ -224,7 +224,7 @@ uint32_t utf8_walk(const char **string)
|
||||
return ret | (first&7)<<6;
|
||||
}
|
||||
|
||||
static bool utf16_to_char(uint8_t **utf_data,
|
||||
bool utf16_to_char(uint8_t **utf_data,
|
||||
size_t *dest_len, const uint16_t *in)
|
||||
{
|
||||
unsigned len = 0;
|
||||
|
@ -621,7 +621,6 @@ int file_archive_compressed_read(
|
||||
const char* optional_filename, ssize_t *length)
|
||||
{
|
||||
int ret = 0;
|
||||
const char* file_ext = NULL;
|
||||
struct string_list *str_list = file_archive_filename_split(path);
|
||||
|
||||
/* Safety check.
|
||||
|
Loading…
x
Reference in New Issue
Block a user