diff options
| author | ailurux <ailuruxx@gmail.com> | 2024-03-27 16:11:36 +1100 |
|---|---|---|
| committer | ailurux <ailuruxx@gmail.com> | 2024-03-27 16:11:36 +1100 |
| commit | bf58cb7acf402420158f3ac2530f62ddc3057914 (patch) | |
| tree | 13709d2ff27b567b1b155b2fe1243c65279111b0 /src | |
| parent | 489fbceb2b5a623ea502ab647f023d2e2e566121 (diff) | |
| download | tangara-fw-bf58cb7acf402420158f3ac2530f62ddc3057914.tar.gz | |
Minor fixes
Diffstat (limited to 'src')
| -rw-r--r-- | src/lua/lua_theme.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_theme.cpp b/src/lua/lua_theme.cpp index 2fcd71e5..32d6f660 100644 --- a/src/lua/lua_theme.cpp +++ b/src/lua/lua_theme.cpp @@ -59,7 +59,7 @@ static auto set_theme(lua_State* L) -> int { // Style lv_style_t* style = luavgl_to_style(L, -1); if (style == NULL) { - ESP_LOGI("DANIEL", "Style was null or malformed??"); + ESP_LOGI(kTag, "Style was null or malformed"); return 0; } else { ui::themes::Theme::instance()->AddStyle(class_name, selector, style); |
