summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/drivenum.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2014-04-07 06:04:18 +0000
commitfec65e0b5766ade69e086d1c5b859d97494fce56 (patch)
treec22b07938e9ad590184f1276bc2bead6d888a78d /src/emu/drivenum.c
parent30d94e51c53f30187a1bc565ef33e4744319790e (diff)
Cleanups and version bumpmame0153
Diffstat (limited to 'src/emu/drivenum.c')
-rw-r--r--src/emu/drivenum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/drivenum.c b/src/emu/drivenum.c
index 4d39f9d8cc4..918310fade2 100644
--- a/src/emu/drivenum.c
+++ b/src/emu/drivenum.c
@@ -244,7 +244,7 @@ void driver_enumerator::include_all()
{
memset(m_included, 1, sizeof(m_included[0]) * s_driver_count);
m_filtered_count = s_driver_count;
-
+
// always exclude the empty driver
int empty = find("___empty");
assert(empty != -1);
@@ -385,7 +385,7 @@ void driver_enumerator::find_approximate_matches(const char *string, int count,
//-------------------------------------------------
// release_current - release bulky memory
// structures from the current entry because
-// we're done with it
+// we're done with it
//-------------------------------------------------
void driver_enumerator::release_current()
@@ -393,7 +393,7 @@ void driver_enumerator::release_current()
// skip if no current entry
if (m_current < 0 || m_current >= s_driver_count)
return;
-
+
// skip if we haven't cached a config
if (m_config[m_current] == NULL)
return;