Griffin buildfixes

This commit is contained in:
Twinaphex 2016-09-18 16:49:09 +02:00
parent dbad3afc3a
commit 61c3de1f6a
3 changed files with 6 additions and 3 deletions

View File

@ -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
============================================================ */

View File

@ -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;

View File

@ -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.