diff options
author | 2017-08-05 18:58:06 +1000 | |
---|---|---|
committer | 2017-08-05 18:58:06 +1000 | |
commit | 1499184f2fd6b158f8650ce5b414266c88422dbd (patch) | |
tree | 902292ad878e392a1dd5abd25b5baba0f2bc29da /src | |
parent | b250f318d9c346f5a2b3255bfcbef23ec0a2b825 (diff) |
BIOS is an initialism, not a proper noun (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/frontend/mame/ui/mainmenu.cpp | 2 | ||||
-rw-r--r-- | src/frontend/mame/ui/miscmenu.cpp | 4 | ||||
-rw-r--r-- | src/frontend/mame/ui/selgame.cpp | 2 | ||||
-rw-r--r-- | src/frontend/mame/ui/selmenu.cpp | 4 | ||||
-rw-r--r-- | src/frontend/mame/ui/submenu.cpp | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/src/frontend/mame/ui/mainmenu.cpp b/src/frontend/mame/ui/mainmenu.cpp index 7ea7022c7a9..005b6081a4e 100644 --- a/src/frontend/mame/ui/mainmenu.cpp +++ b/src/frontend/mame/ui/mainmenu.cpp @@ -99,7 +99,7 @@ void menu_main::populate(float &customtop, float &custombottom) item_append(_("Pseudo terminals"), "", 0, (void *)PTY_INFO); if (ui().machine_info().has_bioses()) - item_append(_("Bios Selection"), "", 0, (void *)BIOS_SELECTION); + item_append(_("BIOS Selection"), "", 0, (void *)BIOS_SELECTION); /* add slot info menu */ if (slot_interface_iterator(machine().root_device()).first() != nullptr) diff --git a/src/frontend/mame/ui/miscmenu.cpp b/src/frontend/mame/ui/miscmenu.cpp index 09bfd0d2388..39542deb069 100644 --- a/src/frontend/mame/ui/miscmenu.cpp +++ b/src/frontend/mame/ui/miscmenu.cpp @@ -760,14 +760,14 @@ void menu_machine_configure::handle() void menu_machine_configure::populate(float &customtop, float &custombottom) { // add options items - item_append(_("Bios"), "", FLAG_DISABLE | FLAG_UI_HEADING, nullptr); + item_append(_("BIOS"), "", FLAG_DISABLE | FLAG_UI_HEADING, nullptr); if (!m_bios.empty()) { uint32_t arrows = get_arrow_flags(std::size_t(0), m_bios.size() - 1, m_curbios); item_append(_("Driver"), m_bios[m_curbios].first, arrows, (void *)(uintptr_t)BIOS); } else - item_append(_("This machine has no bios."), "", FLAG_DISABLE, nullptr); + item_append(_("This machine has no BIOS."), "", FLAG_DISABLE, nullptr); item_append(menu_item_type::SEPARATOR); item_append(_(submenu::advanced_options[0].description), "", 0, (void *)(uintptr_t)ADVANCED); diff --git a/src/frontend/mame/ui/selgame.cpp b/src/frontend/mame/ui/selgame.cpp index 6ae1a6a8d41..ac4b7b1dd7c 100644 --- a/src/frontend/mame/ui/selgame.cpp +++ b/src/frontend/mame/ui/selgame.cpp @@ -1285,7 +1285,7 @@ void menu_select_game::general_info(const game_driver *driver, std::string &buff util::stream_format(str, _("Requires Artwork\t%1$s\n"), ((flags.machine_flags() & machine_flags::REQUIRES_ARTWORK) ? _("Yes") : _("No"))); util::stream_format(str, _("Requires Clickable Artwork\t%1$s\n"), ((flags.machine_flags() & machine_flags::CLICKABLE_ARTWORK) ? _("Yes") : _("No"))); util::stream_format(str, _("Support Cocktail\t%1$s\n"), ((flags.machine_flags() & machine_flags::NO_COCKTAIL) ? _("Yes") : _("No"))); - util::stream_format(str, _("Driver is Bios\t%1$s\n"), ((flags.machine_flags() & machine_flags::IS_BIOS_ROOT) ? _("Yes") : _("No"))); + util::stream_format(str, _("Driver is BIOS\t%1$s\n"), ((flags.machine_flags() & machine_flags::IS_BIOS_ROOT) ? _("Yes") : _("No"))); util::stream_format(str, _("Support Save\t%1$s\n"), ((flags.machine_flags() & machine_flags::SUPPORTS_SAVE) ? _("Yes") : _("No"))); util::stream_format(str, _("Screen Orientation\t%1$s\n"), ((flags.machine_flags() & ORIENTATION_SWAP_XY) ? _("Vertical") : _("Horizontal"))); bool found = false; diff --git a/src/frontend/mame/ui/selmenu.cpp b/src/frontend/mame/ui/selmenu.cpp index dc771c259a1..291d0ea4ea6 100644 --- a/src/frontend/mame/ui/selmenu.cpp +++ b/src/frontend/mame/ui/selmenu.cpp @@ -355,7 +355,7 @@ void menu_select_launch::bios_selection::handle() void menu_select_launch::bios_selection::custom_render(void *selectedref, float top, float bottom, float origx1, float origy1, float origx2, float origy2) { float width; - ui().draw_text_full(container(), _("Bios selection:"), 0.0f, 0.0f, 1.0f, ui::text_layout::CENTER, ui::text_layout::TRUNCATE, + ui().draw_text_full(container(), _("BIOS selection:"), 0.0f, 0.0f, 1.0f, ui::text_layout::CENTER, ui::text_layout::TRUNCATE, mame_ui_manager::NONE, rgb_t::white(), rgb_t::black(), &width, nullptr); width += 2 * UI_BOX_LR_BORDER; float maxwidth = std::max(origx2 - origx1, width); @@ -375,7 +375,7 @@ void menu_select_launch::bios_selection::custom_render(void *selectedref, float y1 += UI_BOX_TB_BORDER; // draw the text within it - ui().draw_text_full(container(), _("Bios selection:"), x1, y1, x2 - x1, ui::text_layout::CENTER, ui::text_layout::TRUNCATE, + ui().draw_text_full(container(), _("BIOS selection:"), x1, y1, x2 - x1, ui::text_layout::CENTER, ui::text_layout::TRUNCATE, mame_ui_manager::NORMAL, UI_TEXT_COLOR, UI_TEXT_BG_COLOR, nullptr, nullptr); } diff --git a/src/frontend/mame/ui/submenu.cpp b/src/frontend/mame/ui/submenu.cpp index 01d3d58027e..8bc4aed0def 100644 --- a/src/frontend/mame/ui/submenu.cpp +++ b/src/frontend/mame/ui/submenu.cpp @@ -28,7 +28,7 @@ std::vector<submenu::option> const submenu::misc_options = { { submenu::option_type::EMU, __("Skip information screen at startup"), OPTION_SKIP_GAMEINFO }, { submenu::option_type::UI, __("Force 4:3 aspect for snapshot display"), OPTION_FORCED4X3 }, { submenu::option_type::UI, __("Use image as background"), OPTION_USE_BACKGROUND }, - { submenu::option_type::UI, __("Skip bios selection menu"), OPTION_SKIP_BIOS_MENU }, + { submenu::option_type::UI, __("Skip BIOS selection menu"), OPTION_SKIP_BIOS_MENU }, { submenu::option_type::UI, __("Skip software parts selection menu"), OPTION_SKIP_PARTS_MENU }, { submenu::option_type::UI, __("Info auto audit"), OPTION_INFO_AUTO_AUDIT }, { submenu::option_type::UI, __("Hide romless machine from available list"),OPTION_HIDE_ROMLESS }, |