mirror of
https://github.com/holub/mame
synced 2025-06-29 23:48:56 +03:00
minor ui cleanup. nw.
This commit is contained in:
parent
50109a0cd7
commit
ba71152805
@ -56,7 +56,7 @@ void ui_menu_barcode_reader::populate()
|
|||||||
const char *new_barcode;
|
const char *new_barcode;
|
||||||
|
|
||||||
// selected device
|
// selected device
|
||||||
item_append(current_display_name().cstr(), "", current_display_flags(), ITEMREF_SELECT_READER);
|
item_append(current_display_name(), "", current_display_flags(), ITEMREF_SELECT_READER);
|
||||||
|
|
||||||
// append the "New Barcode" item
|
// append the "New Barcode" item
|
||||||
if (get_selection() == ITEMREF_NEW_BARCODE)
|
if (get_selection() == ITEMREF_NEW_BARCODE)
|
||||||
|
@ -238,7 +238,7 @@ void ui_menu_select_game::populate()
|
|||||||
emulator_info::get_gamesnoun(),
|
emulator_info::get_gamesnoun(),
|
||||||
emulator_info::get_configname(),
|
emulator_info::get_configname(),
|
||||||
emulator_info::get_appname(),emulator_info::get_appname() );
|
emulator_info::get_appname(),emulator_info::get_appname() );
|
||||||
item_append(txt.cstr(), NULL, MENU_FLAG_MULTILINE | MENU_FLAG_REDTEXT, NULL);
|
item_append(txt, NULL, MENU_FLAG_MULTILINE | MENU_FLAG_REDTEXT, NULL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ void ui_menu_tape_control::populate()
|
|||||||
if (current_device())
|
if (current_device())
|
||||||
{
|
{
|
||||||
// name of tape
|
// name of tape
|
||||||
item_append(current_display_name().cstr(), current_device()->exists() ? current_device()->filename() : "No Tape Image loaded", current_display_flags(), TAPECMD_SELECT);
|
item_append(current_display_name(), current_device()->exists() ? current_device()->filename() : "No Tape Image loaded", current_display_flags(), TAPECMD_SELECT);
|
||||||
|
|
||||||
if (current_device()->exists())
|
if (current_device()->exists())
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user