Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
diff --git a/apps/gui/skin_engine/skin_backdrops.c b/apps/gui/skin_engine/skin_backdrops.c
index 44270a9..9ceee0c 100644
--- a/apps/gui/skin_engine/skin_backdrops.c
+++ b/apps/gui/skin_engine/skin_backdrops.c
@@ -53,7 +53,6 @@ char* skin_backdrop_load(char* backdrop, char *bmpdir, enum screen_type screen)
     int i;
     struct skin_backdrop *bdrop = NULL;
     char dir[MAX_PATH];
-    const char *backdrop_dir = get_user_file_path(bmpdir, 0, dir, sizeof(dir));
     char filename[MAX_PATH];
     size_t buf_size;
     bool loaded = false;
@@ -80,12 +79,14 @@ char* skin_backdrop_load(char* backdrop, char *bmpdir, enum screen_type screen)
                 return NULL; /* backdrop setting not set */
             }
             snprintf(filename, sizeof(filename), "%s/%s.bmp",
-                     backdrop_dir, global_settings.backdrop_file);
+                     get_user_file_path(BACKDROP_DIR, 0, dir, sizeof(dir)),
+                     global_settings.backdrop_file);
         }
     }
     else
     {
-        get_image_filename(backdrop, backdrop_dir, filename, sizeof(filename));
+        const char *bd_dir = get_user_file_path(bmpdir, 0, dir, sizeof(dir));
+        get_image_filename(backdrop, bd_dir, filename, sizeof(filename));
     }

     for(i=0;i<SKINNABLE_SCREENS_COUNT*NB_SCREENS;i++)