Add some missing logging bits for themes.

This commit is contained in:
nicm
2026-01-04 08:05:14 +00:00
parent f72832cc08
commit 6ef7375ade
4 changed files with 19 additions and 3 deletions

View File

@@ -739,6 +739,8 @@ screen_mode_to_string(int mode)
strlcat(tmp, "KEYS_EXTENDED,", sizeof tmp);
if (mode & MODE_KEYS_EXTENDED_2)
strlcat(tmp, "KEYS_EXTENDED_2,", sizeof tmp);
if (mode & MODE_THEME_UPDATES)
strlcat(tmp, "THEME_UPDATES,", sizeof tmp);
tmp[strlen(tmp) - 1] = '\0';
return (tmp);
}