Use '/sd' instead of '/sdcard' for accessing the sd card

it's cleaner
This commit is contained in:
jacqueline
2024-09-10 14:42:40 +10:00
parent acdc9789c9
commit 50d6efada5
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -319,7 +319,7 @@ local ThemeSettings = SettingsScreen:new {
local theme_dir_iter = filesystem.iterator("/.themes/")
for dir in theme_dir_iter do
local theme_name = tostring(dir):match("(.+).lua$")
themeOptions[theme_name] = "/sdcard/.themes/" .. theme_name .. ".lua"
themeOptions[theme_name] = "/sd/.themes/" .. theme_name .. ".lua"
end
local saved_theme = theme.theme_filename();