1
0
Fork 0
mirror of https://github.com/CTCaer/hekate.git synced 2024-09-16 12:03:34 +01:00

nyx: correct touch fw id display

This commit is contained in:
CTCaer 2024-06-11 09:08:33 +03:00
parent 242debfe3e
commit 80b3651d0a

View file

@ -918,7 +918,7 @@ static lv_res_t _create_window_fuses_info_status(lv_obj_t *btn)
strcat(txt_buf, "#FFDD00 Error!#");
s_printf(txt_buf + strlen(txt_buf), "\n#FF8000 ID:# %02X.%02X.%02X.%02X (",
(touch_fw.fw_id >> 24) & 0xFF, (touch_fw.fw_id >> 24) & 0xFF, (touch_fw.fw_id >> 24) & 0xFF, touch_fw.fw_id & 0xFF);
(touch_fw.fw_id >> 24) & 0xFF, (touch_fw.fw_id >> 16) & 0xFF, (touch_fw.fw_id >> 8) & 0xFF, touch_fw.fw_id & 0xFF);
// Check panel pair info.
switch (touch_fw.fw_id)