(Zarch) Prevent some warnings
This commit is contained in:
parent
770ec75b9f
commit
d72ccb0013
|
@ -652,7 +652,10 @@ static void render_lay_root(zui_t *zui)
|
|||
label = core_name;
|
||||
}
|
||||
|
||||
zui_list_item(zui, 0, tabbed.tabline_size + i * 54, label);
|
||||
if (zui_list_item(zui, 0, tabbed.tabline_size + i * 54, label))
|
||||
{
|
||||
RARCH_LOG("Gets here, label: %s, path: %s.\n", core_name, path);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1198,6 +1201,8 @@ static int zarch_iterate(bool render_this_frame, enum menu_action action)
|
|||
case MENU_ACTION_RIGHT:
|
||||
zui->load_dlist_first += 5;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue