diff options
author | 2011-04-06 20:15:07 +0000 | |
---|---|---|
committer | 2011-04-06 20:15:07 +0000 | |
commit | 4d5bf5e7f3ae023ac345ca706437137512e8b311 (patch) | |
tree | a933857ca870561c10ca92438638cb59c4f19e86 /src/emu/uiswlist.c | |
parent | 54ee23b875779bd673374bc5a0d33d311a597fa2 (diff) |
uiswlist.c: properly made non-clickable the separator entry between main lists and compatible ones. no whatsnew.
Diffstat (limited to 'src/emu/uiswlist.c')
-rw-r--r-- | src/emu/uiswlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/uiswlist.c b/src/emu/uiswlist.c index 3b36d6665a9..daea8e7f7d3 100644 --- a/src/emu/uiswlist.c +++ b/src/emu/uiswlist.c @@ -416,7 +416,7 @@ static void ui_mess_menu_populate_software_list(running_machine &machine, ui_men } if (found) { if (!haveCompatible) { - ui_menu_item_append(menu, "[compatible lists]", NULL, 0, NULL); + ui_menu_item_append(menu, "[compatible lists]", NULL, MENU_FLAG_DISABLE, NULL); } ui_menu_item_append(menu, list->description, NULL, 0, swlist->list_name[i]); } |