nyx: show forced 8GB with an asterisk

This commit is contained in:
CTCaer
2026-02-24 19:11:29 +02:00
committed by NaGa
parent 95639d9bf1
commit 860e1b12ac
2 changed files with 5 additions and 4 deletions

View File

@@ -562,7 +562,7 @@ static lv_res_t _create_window_hw_info_status(lv_obj_t *btn)
lv_label_set_style(lb_desc, &monospace_text);
char version[32];
s_printf(version, "%s%d.%d.%d%c", NYX_VER_RL ? "v" : "", NYX_VER_MJ, NYX_VER_MN, NYX_VER_HF, NYX_VER_RL > 'A' ? NYX_VER_RL : 0);
s_printf(version, "%s%d.%d.%d%c", NYX_VER_RL ? "v" : "", NYX_VER_MJ, NYX_VER_MN, NYX_VER_HF, NYX_VER_RL > 'a' ? NYX_VER_RL : 0);
lv_obj_t * lbl_ver = lv_label_create(lv_scr_act(), NULL);
lv_label_set_style(lbl_ver, &hint_small_style_white);
lv_label_set_text(lbl_ver, version);