1
0
Fork 0
forked from len0rd/rockbox

Fix yellow from 5b0506e9de

Change-Id: I6391a6f13e64fad5c54dd29d8d696a08d45362dc
This commit is contained in:
Aidan MacDonald 2022-10-02 13:57:52 +01:00
parent 5b0506e9de
commit c1d75a6bcb

View file

@ -870,7 +870,7 @@ static int tsc2100debug_action_callback(int action, struct gui_synclist *lists)
if (action == ACTION_STD_OK) if (action == ACTION_STD_OK)
{ {
*page = (*page+1)%3; *page = (*page+1)%3;
snprintf(lists->title, 32, "tsc2100 registers - Page %d", *page); snprintf((char*)lists->title, 32, "tsc2100 registers - Page %d", *page);
return ACTION_REDRAW; return ACTION_REDRAW;
} }
return action; return action;