videoopt: update prev commit, better with empty 'radiobuttons'?

This commit is contained in:
hap 2024-04-15 13:29:30 +02:00
parent 5758065e8b
commit bbfee2d929

View File

@ -122,7 +122,7 @@ void menu_video_options::populate()
if (!m_snapshot || !machine().video().snap_native())
{
for (char const *name = m_target.view_name(ref = 0); name; name = m_target.view_name(++ref))
item_append(name, ref == m_target.view() ? convert_command_glyph("_> ") : " ", 0, reinterpret_cast<void *>(ITEM_VIEW_FIRST + ref));
item_append(name, convert_command_glyph(ref == m_target.view() ? "_>" : "_<"), 0, reinterpret_cast<void *>(ITEM_VIEW_FIRST + ref));
item_append(menu_item_type::SEPARATOR);
}