(Zarch) Prevent some warnings

This commit is contained in:
twinaphex 2015-10-06 16:07:02 +02:00
parent 770ec75b9f
commit d72ccb0013

View File

@ -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;
}