[Tools] Dump in 1GB parts if sd <=8GB + tui tweak

Tui tweak:
Support auto scroll.
This commit is contained in:
Kostas Missos
2018-05-21 11:43:56 +03:00
committed by nwert
parent f0d88f61ca
commit 6e82dabb22
2 changed files with 22 additions and 14 deletions

View File

@@ -68,10 +68,14 @@ void *tui_do_menu(gfx_con_t *con, menu_t *menu)
u32 btn = btn_wait();
if (btn & BTN_VOL_DOWN && idx < cnt - 1)
if (btn & BTN_VOL_DOWN && idx < (cnt - 1))
idx++;
else if (btn & BTN_VOL_DOWN && idx == (cnt - 1))
idx = 0;
if (btn & BTN_VOL_UP && idx > 0)
idx--;
else if (btn & BTN_VOL_UP && idx == 0)
idx = cnt - 1;
if (btn & BTN_POWER)
{
ment_t *ent = &menu->ents[idx];