From a8c9dd2e11d8f4eb3485e4b15c9518734127709b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohensohn?= Date: Sat, 17 Jan 2004 12:36:30 +0000 Subject: [PATCH] a typo prevented proper loading of the LCD flip from .cfg files git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4251 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/settings.c b/apps/settings.c index 864c4cd186..606e3750d4 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -994,7 +994,7 @@ bool settings_load_config(char* file) set_cfg_bool(&global_settings.scrollbar, value); else if (!strcasecmp(name, "invert")) set_cfg_bool(&global_settings.invert, value); - else if (!strcasecmp(name, "flip diplay")) + else if (!strcasecmp(name, "flip display")) set_cfg_bool(&global_settings.flip_display, value); else if (!strcasecmp(name, "invert cursor")) set_cfg_bool(&global_settings.invert_cursor, value);