From b2167d686992290dbe05b1094db4353565a3cf3f Mon Sep 17 00:00:00 2001 From: kugel Date: Wed, 26 Jan 2011 07:46:02 +0000 Subject: [PATCH] Fix FS#11904, filename generation was lacking a slash. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29140 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 f01b599f9a..e491c5b6f2 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -888,7 +888,7 @@ void settings_apply(bool read_disk) #ifdef HAVE_REMOTE_LCD if ( global_settings.remote_font_file[0] && global_settings.remote_font_file[0] != '-') { - snprintf(buf, sizeof buf, FONT_DIR "%s.fnt", + snprintf(buf, sizeof buf, FONT_DIR "/%s.fnt", global_settings.remote_font_file); CHART2(">font_load_remoteui ", global_settings.remote_font_file); rc = font_load_remoteui(buf); -- 2.11.4.GIT