Silence some unused variable warnings

This commit is contained in:
libretroadmin 2023-04-30 17:43:46 +02:00
parent 3871ac4455
commit 254773339b
4 changed files with 15 additions and 13 deletions

View File

@ -1637,13 +1637,13 @@ static unsigned menu_displaylist_parse_system_info(file_list_t *list)
int controller; int controller;
#if defined(HAVE_OPENGL) || defined(HAVE_OPENGL1) || defined(HAVE_OPENGLES) || defined(HAVE_OPENGL_CORE) #if defined(HAVE_OPENGL) || defined(HAVE_OPENGL1) || defined(HAVE_OPENGLES) || defined(HAVE_OPENGL_CORE)
gfx_ctx_ident_t ident_info; gfx_ctx_ident_t ident_info;
const char *tmp_string = NULL;
#endif #endif
char tmp[8192]; char tmp[8192];
#ifdef ANDROID #ifdef ANDROID
bool perms = false; bool perms = false;
#endif #endif
unsigned count = 0; unsigned count = 0;
const char *tmp_string = NULL;
const frontend_ctx_driver_t *frontend = frontend_get_ptr(); const frontend_ctx_driver_t *frontend = frontend_get_ptr();
const char *menu_driver = menu_driver_ident(); const char *menu_driver = menu_driver_ident();
size_t len = strlcpy(tmp, size_t len = strlcpy(tmp,

View File

@ -4141,6 +4141,7 @@ void get_current_menu_value(struct menu_state *menu_st,
strlcpy(s, entry_label, len); strlcpy(s, entry_label, len);
} }
#ifdef HAVE_ACCESSIBILITY
static void menu_driver_get_current_menu_label(struct menu_state *menu_st, static void menu_driver_get_current_menu_label(struct menu_state *menu_st,
char *s, size_t len) char *s, size_t len)
{ {
@ -4162,6 +4163,7 @@ static void menu_driver_get_current_menu_label(struct menu_state *menu_st,
strlcpy(s, entry_label, len); strlcpy(s, entry_label, len);
} }
#endif
static void menu_driver_get_current_menu_sublabel( static void menu_driver_get_current_menu_sublabel(
struct menu_state *menu_st, struct menu_state *menu_st,

View File

@ -4846,6 +4846,7 @@ static void setting_get_string_representation_int_audio_wasapi_sh_buffer_length(
} }
#endif #endif
#if !defined(RARCH_CONSOLE)
static void setting_get_string_representation_string_audio_device(rarch_setting_t *setting, static void setting_get_string_representation_string_audio_device(rarch_setting_t *setting,
char *s, size_t len) char *s, size_t len)
{ {
@ -4857,6 +4858,7 @@ static void setting_get_string_representation_string_audio_device(rarch_setting_
else else
strlcpy(s, setting->value.target.string, len); strlcpy(s, setting->value.target.string, len);
} }
#endif
static void setting_get_string_representation_crt_switch_resolution_super( static void setting_get_string_representation_crt_switch_resolution_super(
rarch_setting_t *setting, rarch_setting_t *setting,
@ -6428,6 +6430,7 @@ static void setting_get_string_representation_uint_autosave_interval(
} }
#endif #endif
#ifdef HAVE_BSV_MOVIE
static void setting_get_string_representation_uint_replay_checkpoint_interval( static void setting_get_string_representation_uint_replay_checkpoint_interval(
rarch_setting_t *setting, rarch_setting_t *setting,
char *s, size_t len) char *s, size_t len)
@ -6443,6 +6446,7 @@ static void setting_get_string_representation_uint_replay_checkpoint_interval(
else else
strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF), len); strlcpy(s, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_OFF), len);
} }
#endif
#if defined(HAVE_NETWORKING) #if defined(HAVE_NETWORKING)
static void setting_get_string_representation_netplay_mitm_server( static void setting_get_string_representation_netplay_mitm_server(

View File

@ -2499,11 +2499,10 @@ bool command_event(enum event_command cmd, void *data)
return false; return false;
case CMD_EVENT_PLAY_REPLAY: case CMD_EVENT_PLAY_REPLAY:
{ {
bool res = false;
#ifdef HAVE_BSV_MOVIE #ifdef HAVE_BSV_MOVIE
input_driver_state_t *input_st = input_state_get_ptr(); input_driver_state_t *input_st = input_state_get_ptr();
char replay_path[PATH_MAX_LENGTH]; char replay_path[PATH_MAX_LENGTH];
res = true; bool res = true;
/* TODO: Consider extending the current replay if we start recording during a playback */ /* TODO: Consider extending the current replay if we start recording during a playback */
if (input_st->bsv_movie_state.flags & BSV_FLAG_MOVIE_RECORDING) if (input_st->bsv_movie_state.flags & BSV_FLAG_MOVIE_RECORDING)
res = false; res = false;
@ -2513,7 +2512,7 @@ bool command_event(enum event_command cmd, void *data)
res = false; res = false;
if (res) if (res)
res = movie_start_playback(input_st, replay_path); res = movie_start_playback(input_st, replay_path);
if(!res) if (!res)
{ {
const char *movie_fail_str = const char *movie_fail_str =
msg_hash_to_str(MSG_FAILED_TO_LOAD_MOVIE_FILE); msg_hash_to_str(MSG_FAILED_TO_LOAD_MOVIE_FILE);
@ -2529,14 +2528,13 @@ bool command_event(enum event_command cmd, void *data)
} }
case CMD_EVENT_RECORD_REPLAY: case CMD_EVENT_RECORD_REPLAY:
{ {
bool res = false;
#ifdef HAVE_BSV_MOVIE #ifdef HAVE_BSV_MOVIE
input_driver_state_t *input_st = input_state_get_ptr();
int replay_slot = settings->ints.replay_slot;
char replay_path[PATH_MAX_LENGTH]; char replay_path[PATH_MAX_LENGTH];
bool res = true;
input_driver_state_t *input_st = input_state_get_ptr();
int replay_slot = settings->ints.replay_slot;
if (settings->bools.replay_auto_index) if (settings->bools.replay_auto_index)
replay_slot += 1; replay_slot += 1;
res = true;
/* TODO: Consider cloning and extending the current replay if we start recording during a recording */ /* TODO: Consider cloning and extending the current replay if we start recording during a recording */
if (input_st->bsv_movie_state.flags & BSV_FLAG_MOVIE_RECORDING) if (input_st->bsv_movie_state.flags & BSV_FLAG_MOVIE_RECORDING)
res = false; res = false;
@ -2544,14 +2542,12 @@ bool command_event(enum event_command cmd, void *data)
res = movie_stop(input_st); res = movie_stop(input_st);
if (!runloop_get_replay_path(replay_path, sizeof(replay_path), replay_slot)) if (!runloop_get_replay_path(replay_path, sizeof(replay_path), replay_slot))
res = false; res = false;
if(res) if (res)
res = movie_start_record(input_st, replay_path); res = movie_start_record(input_st, replay_path);
if(res && settings->bools.replay_auto_index) if (res && settings->bools.replay_auto_index)
{
configuration_set_int(settings, settings->ints.replay_slot, replay_slot); configuration_set_int(settings, settings->ints.replay_slot, replay_slot);
} if (!res)
if(!res)
{ {
const char *movie_rec_fail_str = const char *movie_rec_fail_str =
msg_hash_to_str(MSG_FAILED_TO_START_MOVIE_RECORD); msg_hash_to_str(MSG_FAILED_TO_START_MOVIE_RECORD);