mirror of
https://github.com/holub/mame
synced 2025-04-26 18:23:08 +03:00
ui/selgame.cpp, ui/selsoft.cpp: Clear up std::vector asserts triggered when menu items is empty. (#10085)
This commit is contained in:
parent
24c2f80c83
commit
26f30a12a5
@ -442,7 +442,7 @@ void menu_select_game::populate(float &customtop, float &custombottom)
|
|||||||
item_append(_("System Settings"), 0, (void *)(uintptr_t)CONF_MACHINE);
|
item_append(_("System Settings"), 0, (void *)(uintptr_t)CONF_MACHINE);
|
||||||
skip_main_items = 3;
|
skip_main_items = 3;
|
||||||
|
|
||||||
if (m_prev_selected && !have_prev_selected)
|
if (m_prev_selected && !have_prev_selected && item_count() > 0)
|
||||||
m_prev_selected = item(0).ref();
|
m_prev_selected = item(0).ref();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -397,7 +397,7 @@ menu_select_software::~menu_select_software()
|
|||||||
|
|
||||||
void menu_select_software::handle(event const *ev)
|
void menu_select_software::handle(event const *ev)
|
||||||
{
|
{
|
||||||
if (m_prev_selected == nullptr)
|
if (m_prev_selected == nullptr && item_count() > 0)
|
||||||
m_prev_selected = item(0).ref();
|
m_prev_selected = item(0).ref();
|
||||||
|
|
||||||
// FIXME: everything above here used run before events were processed
|
// FIXME: everything above here used run before events were processed
|
||||||
|
Loading…
Reference in New Issue
Block a user