mirror of
https://github.com/libretro/RetroArch
synced 2025-04-07 13:23:32 +00:00
(OSX) Get rid of some warnings
This commit is contained in:
parent
b04c253c06
commit
7db4cd56b7
@ -517,7 +517,8 @@ bool menu_replace_config(const char *path)
|
|||||||
bool menu_save_new_config(void)
|
bool menu_save_new_config(void)
|
||||||
{
|
{
|
||||||
char config_dir[PATH_MAX], config_name[PATH_MAX], config_path[PATH_MAX], msg[512];
|
char config_dir[PATH_MAX], config_name[PATH_MAX], config_path[PATH_MAX], msg[512];
|
||||||
bool ret, found_path = false;
|
bool ret = false;
|
||||||
|
bool found_path = false;
|
||||||
|
|
||||||
*config_dir = '\0';
|
*config_dir = '\0';
|
||||||
|
|
||||||
|
@ -2408,7 +2408,9 @@ static void check_shader_dir(void)
|
|||||||
{
|
{
|
||||||
static bool old_pressed_next;
|
static bool old_pressed_next;
|
||||||
static bool old_pressed_prev;
|
static bool old_pressed_prev;
|
||||||
bool should_apply, pressed_next, pressed_prev = false;
|
bool should_apply = false;
|
||||||
|
bool pressed_next = false;
|
||||||
|
bool pressed_prev = false;
|
||||||
|
|
||||||
if (!g_extern.shader_dir.list || !driver.video->set_shader)
|
if (!g_extern.shader_dir.list || !driver.video->set_shader)
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user