Prevent some unused variable warnings

This commit is contained in:
twinaphex 2016-07-10 19:29:52 +02:00
parent 7d518bd4a8
commit 66df62938c
2 changed files with 2 additions and 2 deletions

View File

@ -528,11 +528,13 @@ static float menu_wallpaper_opacity = 0.300;
static unsigned menu_background_gradient = 4;
#if defined(HAVE_CG) || defined(HAVE_HLSL) || defined(HAVE_GLSL) || defined(HAVE_VULKAN)
#if defined(HAVE_OPENGLES2) || defined(OSX_PPC)
static unsigned menu_shader_pipeline = 1;
#else
static unsigned menu_shader_pipeline = 2;
#endif
#endif
static bool show_advanced_settings = true;
static const uint32_t menu_entry_normal_color = 0xffffffff;

View File

@ -206,8 +206,6 @@ static bool menu_init(menu_handle_t *menu_data)
return true;
}
static menu_ctx_iterate_t pending_iter;
static void menu_input_key_event(bool down, unsigned keycode,
uint32_t character, uint16_t mod)
{