mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-09 20:41:19 +00:00
Silence unused variable warnings
This commit is contained in:
parent
3dff396ff4
commit
f4250a1ad5
@ -134,9 +134,6 @@ static int sevenzip_file_read(
|
||||
CSzArEx db;
|
||||
uint8_t *output = 0;
|
||||
long outsize = -1;
|
||||
#ifndef LEGACY_WIN32
|
||||
wchar_t *pathW = NULL;
|
||||
#endif
|
||||
|
||||
/*These are the allocation routines.
|
||||
* Currently using the non-standard 7zip choices. */
|
||||
@ -148,7 +145,7 @@ static int sevenzip_file_read(
|
||||
#if defined(_WIN32) && defined(USE_WINDOWS_FILE) && !defined(LEGACY_WIN32)
|
||||
if (!string_is_empty(path))
|
||||
{
|
||||
pathW = utf8_to_utf16_string_alloc(path);
|
||||
whcar_t *pathW = utf8_to_utf16_string_alloc(path);
|
||||
|
||||
if (pathW)
|
||||
{
|
||||
@ -354,9 +351,6 @@ static int sevenzip_parse_file_init(file_archive_transfer_t *state,
|
||||
{
|
||||
struct sevenzip_context_t *sevenzip_context =
|
||||
(struct sevenzip_context_t*)sevenzip_stream_new();
|
||||
#ifndef LEGACY_WIN32
|
||||
wchar_t *fileW = NULL;
|
||||
#endif
|
||||
|
||||
if (state->archive_size < SEVENZIP_MAGIC_LEN)
|
||||
goto error;
|
||||
@ -369,7 +363,7 @@ static int sevenzip_parse_file_init(file_archive_transfer_t *state,
|
||||
#if defined(_WIN32) && defined(USE_WINDOWS_FILE) && !defined(LEGACY_WIN32)
|
||||
if (!string_is_empty(file))
|
||||
{
|
||||
fileW = utf8_to_utf16_string_alloc(file);
|
||||
wchar_t *fileW = utf8_to_utf16_string_alloc(file);
|
||||
|
||||
if (fileW)
|
||||
{
|
||||
|
@ -604,7 +604,9 @@ void cdlz_codec_free(void* codec)
|
||||
|
||||
chd_error cdlz_codec_decompress(void *codec, const uint8_t *src, uint32_t complen, uint8_t *dest, uint32_t destlen)
|
||||
{
|
||||
#ifdef WANT_RAW_DATA_SECTOR
|
||||
uint8_t *sector;
|
||||
#endif
|
||||
uint32_t framenum;
|
||||
cdlz_codec_data* cdlz = (cdlz_codec_data*)codec;
|
||||
|
||||
@ -691,7 +693,9 @@ void cdzl_codec_free(void *codec)
|
||||
|
||||
chd_error cdzl_codec_decompress(void *codec, const uint8_t *src, uint32_t complen, uint8_t *dest, uint32_t destlen)
|
||||
{
|
||||
#ifdef WANT_RAW_DATA_SECTOR
|
||||
uint8_t *sector;
|
||||
#endif
|
||||
uint32_t framenum;
|
||||
cdzl_codec_data* cdzl = (cdzl_codec_data*)codec;
|
||||
|
||||
|
@ -2027,8 +2027,6 @@ static int mui_list_push(void *data, void *userdata,
|
||||
{
|
||||
case DISPLAYLIST_LOAD_CONTENT_LIST:
|
||||
{
|
||||
settings_t *settings = config_get_ptr();
|
||||
|
||||
menu_entries_ctl(MENU_ENTRIES_CTL_CLEAR, info->list);
|
||||
|
||||
menu_entries_append_enum(info->list,
|
||||
|
Loading…
Reference in New Issue
Block a user