diff options
Diffstat (limited to 'src/emu/drivenum.c')
-rw-r--r-- | src/emu/drivenum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/drivenum.c b/src/emu/drivenum.c index 6d1590c030b..04ff2714e18 100644 --- a/src/emu/drivenum.c +++ b/src/emu/drivenum.c @@ -360,7 +360,7 @@ void driver_enumerator::find_approximate_matches(const char *string, int count, if (m_included[index]) { // skip things that can't run - if ((s_drivers_sorted[index]->flags & GAME_NO_STANDALONE) != 0) + if ((s_drivers_sorted[index]->flags & MACHINE_NO_STANDALONE) != 0) continue; // pick the best match between driver name and description |