minor ui cleanup. nw.

This commit is contained in:
etabeta78 2015-01-12 20:33:56 +01:00
parent 50109a0cd7
commit ba71152805
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ void ui_menu_barcode_reader::populate()
const char *new_barcode;
// 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
if (get_selection() == ITEMREF_NEW_BARCODE)

View File

@ -238,7 +238,7 @@ void ui_menu_select_game::populate()
emulator_info::get_gamesnoun(),
emulator_info::get_configname(),
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;
}

View File

@ -58,7 +58,7 @@ void ui_menu_tape_control::populate()
if (current_device())
{
// 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())
{