From 179f624d8e2fbef8ec14bea6abe3aee4c12c9886 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 27 Oct 2015 11:52:12 +0100 Subject: [PATCH] Add something more to debug output --- menu/drivers/zarch.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/menu/drivers/zarch.c b/menu/drivers/zarch.c index 596fbee9a3..8452a0308e 100644 --- a/menu/drivers/zarch.c +++ b/menu/drivers/zarch.c @@ -816,6 +816,8 @@ static int zarch_zui_render_lay_root(zui_t *zui) zarch_zui_draw_text(zui, ZUI_FG_NORMAL, 1600 +12, 300 + 41, item); snprintf(item, sizeof(item), "tab idx: %d\n", tabbed.active_id); zarch_zui_draw_text(zui, ZUI_FG_NORMAL, 1600 +12, 300 + 81, item); + snprintf(item, sizeof(item), "item hot idx: %d\n", zui->item.hot); + zarch_zui_draw_text(zui, ZUI_FG_NORMAL, 1600 +12, 300 + 111, item); #endif if (zui->pending_selection == -1)