mirror of
https://github.com/libretro/RetroArch
synced 2025-04-25 00:02:31 +00:00
(OSX) Fix some warnings
This commit is contained in:
parent
0e406c998d
commit
d17392b835
@ -531,6 +531,32 @@
|
||||
"-DSINC_LOWER_QUALITY",
|
||||
"-DRARCH_INTERNAL",
|
||||
);
|
||||
"OTHER_CFLAGS[arch=*]" = (
|
||||
"-DNS_BLOCK_ASSERTIONS=1",
|
||||
"-DNDEBUG",
|
||||
"-DHAVE_CAMERA",
|
||||
"-DHAVE_GRIFFIN",
|
||||
"-DHAVE_LOCATION",
|
||||
"-DHAVE_RGUI",
|
||||
"-DHAVE_MENU",
|
||||
"-DIOS",
|
||||
"-DHAVE_OPENGL",
|
||||
"-DHAVE_FBO",
|
||||
"-DHAVE_OPENGLES",
|
||||
"-DHAVE_OPENGLES2",
|
||||
"-DHAVE_GLSL",
|
||||
"-DINLINE=inline",
|
||||
"-DLSB_FIRST",
|
||||
"-D__LIBRETRO__",
|
||||
"-DRARCH_MOBILE",
|
||||
"-DHAVE_COREAUDIO",
|
||||
"-DHAVE_DYNAMIC",
|
||||
"-DHAVE_OVERLAY",
|
||||
"-DHAVE_ZLIB",
|
||||
"-DWANT_MINIZ",
|
||||
"-DSINC_LOWER_QUALITY",
|
||||
"-DRARCH_INTERNAL",
|
||||
);
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
PROVISIONING_PROFILE = "";
|
||||
"PROVISIONING_PROFILE[sdk=iphoneos*]" = "";
|
||||
|
@ -471,7 +471,7 @@ const rarch_setting_t* setting_data_get_list()
|
||||
CONFIG_BOOL(g_settings.savestate_auto_index, "savestate_auto_index", "Save State Auto Index", savestate_auto_index)
|
||||
CONFIG_BOOL(g_settings.savestate_auto_save, "savestate_auto_save", "Auto Save State", savestate_auto_save)
|
||||
CONFIG_BOOL(g_settings.savestate_auto_load, "savestate_auto_load", "Auto Load State", savestate_auto_load)
|
||||
CONFIG_UINT(g_extern.state_slot, "state_slot", "State Slot", 0)
|
||||
CONFIG_INT(g_extern.state_slot, "state_slot", "State Slot", 0)
|
||||
END_SUB_GROUP()
|
||||
END_GROUP()
|
||||
|
||||
|
@ -1888,7 +1888,7 @@ int menu_set_settings(void *data, unsigned setting, unsigned action)
|
||||
case RGUI_SETTINGS_NETPLAY_DELAY_FRAMES:
|
||||
if (action == RGUI_ACTION_LEFT)
|
||||
{
|
||||
if (g_extern.netplay_sync_frames >= 0)
|
||||
if (g_extern.netplay_sync_frames != 0)
|
||||
g_extern.netplay_sync_frames--;
|
||||
}
|
||||
else if (action == RGUI_ACTION_RIGHT)
|
||||
|
Loading…
x
Reference in New Issue
Block a user