summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/drivenum.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-08-10 15:03:52 +1000
committer Vas Crabb <vas@vastheman.com>2017-08-10 15:03:52 +1000
commit54ff6183fce149505a62349edd9e73b19baedbb7 (patch)
tree613cc2e3e8876ea3c24b20d85ed502209a489069 /src/emu/drivenum.cpp
parent80b2ca6088281babff558b36a98d329aa60aa8ed (diff)
ui: improve layout of art/info box, support mousewheel scroll in info
text, allow home/end to jump to beginning/end of filter list, consolidate logic (nw) A number of vestigial constants have been removed. Some hacky input types that were just used as a trick to pass information between menu functions are gone. MACHINE_NO_STANDALONE is a relic from when drivers were used as arbitrary ROM containers, and in a world of first-class devices this is no longer necessary.
Diffstat (limited to 'src/emu/drivenum.cpp')
-rw-r--r--src/emu/drivenum.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/drivenum.cpp b/src/emu/drivenum.cpp
index eb2222fa7c5..b3e9ce93d62 100644
--- a/src/emu/drivenum.cpp
+++ b/src/emu/drivenum.cpp
@@ -308,7 +308,7 @@ void driver_enumerator::find_approximate_matches(const char *string, std::size_t
for (int index = 0; index < s_driver_count; index++)
{
// skip things that can't run
- if (m_included[index] && !(s_drivers_sorted[index]->flags & MACHINE_NO_STANDALONE))
+ if (m_included[index])
{
// pick the best match between driver name and description
int curpenalty = penalty_compare(string, s_drivers_sorted[index]->type.fullname());