Previous 199869 Revisions Next

r34361 Monday 12th January, 2015 at 19:33:56 UTC by Fabio Priuli
minor ui cleanup. nw.
[src/emu/ui]barcode.c selgame.c tapectrl.c

trunk/src/emu/ui/barcode.c
r242872r242873
5656      const char *new_barcode;
5757
5858      // selected device
59      item_append(current_display_name().cstr(), "", current_display_flags(), ITEMREF_SELECT_READER);
59      item_append(current_display_name(), "", current_display_flags(), ITEMREF_SELECT_READER);
6060
6161      // append the "New Barcode" item
6262      if (get_selection() == ITEMREF_NEW_BARCODE)
trunk/src/emu/ui/selgame.c
r242872r242873
238238               emulator_info::get_gamesnoun(),
239239               emulator_info::get_configname(),
240240               emulator_info::get_appname(),emulator_info::get_appname() );
241      item_append(txt.cstr(), NULL, MENU_FLAG_MULTILINE | MENU_FLAG_REDTEXT, NULL);
241      item_append(txt, NULL, MENU_FLAG_MULTILINE | MENU_FLAG_REDTEXT, NULL);
242242      return;
243243   }
244244
trunk/src/emu/ui/tapectrl.c
r242872r242873
5858   if (current_device())
5959   {     
6060      // name of tape
61      item_append(current_display_name().cstr(), current_device()->exists() ? current_device()->filename() : "No Tape Image loaded", current_display_flags(), TAPECMD_SELECT);
61      item_append(current_display_name(), current_device()->exists() ? current_device()->filename() : "No Tape Image loaded", current_display_flags(), TAPECMD_SELECT);
6262
6363      if (current_device()->exists())
6464      {


Previous 199869 Revisions Next


© 1997-2024 The MAME Team