summaryrefslogtreecommitdiffstats
path: root/src/emu/fileio.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 16:37:12 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 16:37:12 +0200
commita6bdefec8c76e9878b634119c56438a7673b0385 (patch)
tree9b435836a12773fe5b84cf1fd04866ecd9ecc2da /src/emu/fileio.cpp
parent5f3d4fb33da4304e417a0e142e82e3d292646465 (diff)
more TRUE/FALSE cleanup (nw)
Diffstat (limited to 'src/emu/fileio.cpp')
-rw-r--r--src/emu/fileio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/fileio.cpp b/src/emu/fileio.cpp
index 45b0dc98d53..4670fd2b789 100644
--- a/src/emu/fileio.cpp
+++ b/src/emu/fileio.cpp
@@ -81,7 +81,7 @@ path_iterator &path_iterator::operator=(path_iterator const &that)
bool path_iterator::next(std::string &buffer, const char *name)
{
- // if none left, return FALSE to indicate we are done
+ // if none left, return false to indicate we are done
if (!m_is_first && (m_searchpath.cend() == m_current))
return false;
@@ -101,7 +101,7 @@ bool path_iterator::next(std::string &buffer, const char *name)
buffer.append(name);
}
- // bump the index and return TRUE
+ // bump the index and return true
m_is_first = false;
return true;
}