diff options
author | 2016-10-22 16:37:12 +0200 | |
---|---|---|
committer | 2016-10-22 16:37:12 +0200 | |
commit | a6bdefec8c76e9878b634119c56438a7673b0385 (patch) | |
tree | 9b435836a12773fe5b84cf1fd04866ecd9ecc2da /src/lib/util/zippath.cpp | |
parent | 5f3d4fb33da4304e417a0e142e82e3d292646465 (diff) |
more TRUE/FALSE cleanup (nw)
Diffstat (limited to 'src/lib/util/zippath.cpp')
-rw-r--r-- | src/lib/util/zippath.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/zippath.cpp b/src/lib/util/zippath.cpp index 2ee9082a817..f85e5c63b71 100644 --- a/src/lib/util/zippath.cpp +++ b/src/lib/util/zippath.cpp @@ -1048,8 +1048,8 @@ const osd::directory::entry *zippath_readdir(zippath_directory *directory) // ------------------------------------------------- -// zippath_is_zip - returns TRUE if this path is -// a ZIP path or FALSE if not +// zippath_is_zip - returns true if this path is +// a ZIP path or false if not // ------------------------------------------------- /** @@ -1062,7 +1062,7 @@ const osd::directory::entry *zippath_readdir(zippath_directory *directory) * @return An int. */ -int zippath_is_zip(zippath_directory *directory) +bool zippath_is_zip(zippath_directory *directory) { return directory->zipfile != nullptr; } |