Fix FS#11904, filename generation was lacking a slash.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29140 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4c38572997
commit
044de86d81
1 changed files with 1 additions and 1 deletions
|
@ -888,7 +888,7 @@ void settings_apply(bool read_disk)
|
||||||
#ifdef HAVE_REMOTE_LCD
|
#ifdef HAVE_REMOTE_LCD
|
||||||
if ( global_settings.remote_font_file[0]
|
if ( global_settings.remote_font_file[0]
|
||||||
&& 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);
|
global_settings.remote_font_file);
|
||||||
CHART2(">font_load_remoteui ", global_settings.remote_font_file);
|
CHART2(">font_load_remoteui ", global_settings.remote_font_file);
|
||||||
rc = font_load_remoteui(buf);
|
rc = font_load_remoteui(buf);
|
||||||
|
|
Loading…
Reference in a new issue