summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/utils.cpp
diff options
context:
space:
mode:
author motoschifo <motoschifo@users.noreply.github.com>2016-02-13 20:34:21 +0100
committer motoschifo <motoschifo@users.noreply.github.com>2016-02-13 20:34:21 +0100
commite49253b0e0cfde7975a2f14190c1e5ad3a339d16 (patch)
treeba7f543e83f3b7f4cf0df7a1c8d2dd0f518f98f5 /src/emu/ui/utils.cpp
parent8b880ab07f43c80461e9645628da36929076c4d0 (diff)
parentc62ba64a5028055f4bff0bd8c840bcdb16fa08d6 (diff)
Merge pull request #3 from mamedev/master
Update from original
Diffstat (limited to 'src/emu/ui/utils.cpp')
-rw-r--r--src/emu/ui/utils.cpp14
1 files changed, 4 insertions, 10 deletions
diff --git a/src/emu/ui/utils.cpp b/src/emu/ui/utils.cpp
index eb8078a4ab1..608b6b16a88 100644
--- a/src/emu/ui/utils.cpp
+++ b/src/emu/ui/utils.cpp
@@ -25,23 +25,17 @@ std::vector<std::string> c_mnfct::ui;
// Main filters
UINT16 main_filters::actual = 0;
-const char *main_filters::text[] = { "All", "Available", "Unavailable", "Working", "Not Mechanical", "Category", "Favorites", "BIOS",
- "Originals", "Clones", "Not Working", "Mechanical", "Manufacturers", "Years", "Support Save",
- "Not Support Save", "CHD", "No CHD", "Use Samples", "Not Use Samples", "Stereo", "Vertical",
- "Horizontal", "Screen Type", "Custom" };
+const char *main_filters::text[] = { "All", "Available", "Unavailable", "Working", "Not Working", "Mechanical", "Not Mechanical",
+ "Category", "Favorites", "BIOS", "Originals", "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",
- "Partial Supported", "Unsupported", "Region", "Device Type", "Software List", "Custom" };
+ "Partial Supported", "Unsupported", "Region", "Device Type", "Software List", "Custom" };
size_t sw_filters::length = ARRAY_LENGTH(sw_filters::text);
-// Screens
-UINT16 screen_filters::actual = 0;
-const char *screen_filters::text[] = { "<none>", "Raster", "Vector", "LCD" };
-size_t screen_filters::length = ARRAY_LENGTH(screen_filters::text);
-
// Globals
UINT8 ui_globals::rpanel = 0;
UINT8 ui_globals::curimage_view = 0;