From d46304a80c0bed4d873ad3c2edf2d94e9daf14e7 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 8 Apr 2014 02:28:32 +0200 Subject: [PATCH] (menu_settings.c) Fix typo - HAVE_LOCATION ifdef --- frontend/menu/menu_settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/menu/menu_settings.c b/frontend/menu/menu_settings.c index 1b26a3cfa0..9ae37cf021 100644 --- a/frontend/menu/menu_settings.c +++ b/frontend/menu/menu_settings.c @@ -1872,7 +1872,7 @@ int menu_set_settings(void *data, unsigned setting, unsigned action) #ifdef HAVE_LOCATION case RGUI_SETTINGS_PRIVACY_LOCATION_ALLOW: if (action == RGUI_ACTION_OK || action == RGUI_ACTION_LEFT || action == RGUI_ACTION_RIGHT) - g_setttings.location.allow = !g_settings.location.allow; + g_settings.location.allow = !g_settings.location.allow; else if (action == RGUI_ACTION_START) g_settings.location.allow = false; break;