From b91b056b2c0a6a5351f69932039d9b8419d0a5a1 Mon Sep 17 00:00:00 2001 From: svenhoefer Date: Mon, 22 Jun 2020 22:14:20 +0200 Subject: [PATCH] - glcdthemes: fix typo Signed-off-by: Thilo Graf --- src/gui/glcdthemes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/glcdthemes.cpp b/src/gui/glcdthemes.cpp index 0a2e4fdc4..bb403784a 100644 --- a/src/gui/glcdthemes.cpp +++ b/src/gui/glcdthemes.cpp @@ -95,7 +95,7 @@ int CGLCDThemes::exec(CMenuTarget* parent, const std::string & actionKey) readFile(((std::string)THEMESDIR_VAR + "/oled/" + themeFile + FILE_SUFFIX).c_str()); } else - readFile(((std::string)THEMESDIR + "/oled" + themeFile + FILE_SUFFIX).c_str()); + readFile(((std::string)THEMESDIR + "/oled/" + themeFile + FILE_SUFFIX).c_str()); g_settings.glcd_theme_name = themeFile; } OnAfterSelectTheme();