diff options
author | 2016-02-29 10:22:58 +0100 | |
---|---|---|
committer | 2016-02-29 10:22:58 +0100 | |
commit | d5ce1264a5dca03ded7ce3c8f4542c977625ec20 (patch) | |
tree | 9b959eb5160b9d4f74d7b3ddb3604c9bb3d1657e /src/emu/ui/utils.cpp | |
parent | 7936291894faa9cc3df6039b8794c01b988055ed (diff) |
ui: changed filter label from "Originals" to "Parents" (MT06143)
Diffstat (limited to 'src/emu/ui/utils.cpp')
-rw-r--r-- | src/emu/ui/utils.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/ui/utils.cpp b/src/emu/ui/utils.cpp index 333ee95971a..1e998d04c9d 100644 --- a/src/emu/ui/utils.cpp +++ b/src/emu/ui/utils.cpp @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:Dankan1890 +// copyright-holders:Maurizio Petrarota /*************************************************************************** ui/utils.cpp @@ -26,13 +26,13 @@ std::vector<std::string> c_mnfct::ui; // Main filters UINT16 main_filters::actual = 0; const char *main_filters::text[] = { "All", "Available", "Unavailable", "Working", "Not Working", "Mechanical", "Not Mechanical", - "Category", "Favorites", "BIOS", "Originals", "Clones", "Manufacturers", "Years", "Support Save", + "Category", "Favorites", "BIOS", "Parents", "Clones", "Manufacturers", "Years", "Support Save", "Not Support Save", "CHD", "No CHD", "Vertical", "Horizontal", "Custom" }; size_t main_filters::length = ARRAY_LENGTH(main_filters::text); // Software filters UINT16 sw_filters::actual = 0; -const char *sw_filters::text[] = { "All", "Available", "Unavailable", "Originals", "Clones", "Years", "Publishers", "Supported", +const char *sw_filters::text[] = { "All", "Available", "Unavailable", "Parents", "Clones", "Years", "Publishers", "Supported", "Partial Supported", "Unsupported", "Region", "Device Type", "Software List", "Custom" }; size_t sw_filters::length = ARRAY_LENGTH(sw_filters::text); |