From 53a56c159383ad608e9f76e49c164d10be850b69 Mon Sep 17 00:00:00 2001 From: Marcoen Hirschberg Date: Fri, 9 Dec 2005 01:11:14 +0000 Subject: don't display the WPS after loading, it made rockbox crash with some WPS' git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8209 a1c6a512-1295-4272-9138-f99709370657 --- apps/filetree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/filetree.c') diff --git a/apps/filetree.c b/apps/filetree.c index b870f969b5..cb21b71eec 100644 --- a/apps/filetree.c +++ b/apps/filetree.c @@ -381,7 +381,7 @@ int ft_enter(struct tree_context* c) /* wps config file */ case TREE_ATTR_WPS: - wps_data_load(gui_wps[0].data, buf, true, true); + wps_data_load(gui_wps[0].data, buf, true); set_file(buf, (char *)global_settings.wps_file, MAX_FILENAME); break; @@ -389,7 +389,7 @@ int ft_enter(struct tree_context* c) #if defined(HAVE_REMOTE_LCD) && (NB_SCREENS > 1) /* remote-wps config file */ case TREE_ATTR_RWPS: - wps_data_load(gui_wps[1].data, buf, true, true); + wps_data_load(gui_wps[1].data, buf, true); set_file(buf, (char *)global_settings.rwps_file, MAX_FILENAME); break; -- cgit v1.2.3