summaryrefslogtreecommitdiff
path: root/firmware/export/rbpaths.h
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2024-07-23 22:14:16 -0400
committerWilliam Wilgus <wilgus.william@gmail.com>2024-07-23 22:14:16 -0400
commit89b4cd59ef1fcc1a83565dddde4127bb89e8e083 (patch)
treeb08e79c5b32c2dcb511f4639ffc9210b56001bc2 /firmware/export/rbpaths.h
parentcd1922fe74916c909ff568437c5f71f7d08c0b2b (diff)
downloadrockbox-89b4cd59ef1fcc1a83565dddde4127bb89e8e083.tar.gz
rockbox-89b4cd59ef1fcc1a83565dddde4127bb89e8e083.zip
[BugFix] extra slashes in recording directory
the define for HOME_DIR has a single slash for native hosted does or doesn't but native always has 2 Change-Id: I2ff546da8e422feb04027de164caf3747f6d9355
Diffstat (limited to 'firmware/export/rbpaths.h')
-rw-r--r--firmware/export/rbpaths.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/export/rbpaths.h b/firmware/export/rbpaths.h
index 9dd0a24c6f..c9215fbc5a 100644
--- a/firmware/export/rbpaths.h
+++ b/firmware/export/rbpaths.h
@@ -54,6 +54,8 @@
54 54
55#define RB_ROOT_VOL_HIDDEN(v) (IF_MV_VOL(v) == 0) 55#define RB_ROOT_VOL_HIDDEN(v) (IF_MV_VOL(v) == 0)
56#define RB_ROOT_CONTENTS_DIR "/" IF_MV("<0>") 56#define RB_ROOT_CONTENTS_DIR "/" IF_MV("<0>")
57#define REC_BASE_DIR HOME_DIR "Recordings"
58#define PLAYLIST_CATALOG_DEFAULT_DIR HOME_DIR "Playlists"
57 59
58#else /* APPLICATION */ 60#else /* APPLICATION */
59 61
@@ -67,13 +69,11 @@
67#define CODECS_DIR ROCKBOX_LIBRARY_PATH "/rockbox/codecs" 69#define CODECS_DIR ROCKBOX_LIBRARY_PATH "/rockbox/codecs"
68#endif 70#endif
69 71
70#endif /* !APPLICATION || SAMSUNG_YPR0 */ 72#define REC_BASE_DIR HOME_DIR "/Recordings"]
71
72#define REC_BASE_DIR HOME_DIR "/Recordings"
73#define PLAYLIST_CATALOG_DEFAULT_DIR HOME_DIR "/Playlists" 73#define PLAYLIST_CATALOG_DEFAULT_DIR HOME_DIR "/Playlists"
74#endif /* !APPLICATION || SAMSUNG_YPR0 */
74 75
75#define LANG_DIR ROCKBOX_DIR "/langs" 76#define LANG_DIR ROCKBOX_DIR "/langs"
76
77#define PLUGIN_GAMES_DIR PLUGIN_DIR "/games" 77#define PLUGIN_GAMES_DIR PLUGIN_DIR "/games"
78#define PLUGIN_APPS_DIR PLUGIN_DIR "/apps" 78#define PLUGIN_APPS_DIR PLUGIN_DIR "/apps"
79#define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos" 79#define PLUGIN_DEMOS_DIR PLUGIN_DIR "/demos"