summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/fileio.h
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-07-23 12:49:33 -0400
committer Nathan Woods <npwoods@mess.org>2016-07-23 12:49:33 -0400
commit4aa0ab1724e8fe19775d6be982ec312604a2a6b3 (patch)
tree14f54f2739422cb8640c7b51ffd2af8bc7271114 /src/emu/fileio.h
parent4423c242a693c37fbb4edc50f17c02cdf98abd88 (diff)
Moved src/emu/hash.[cpp|h] into src/lib/util, and namespaced that code (and hashing.[cpp|h]) into util::
Diffstat (limited to 'src/emu/fileio.h')
-rw-r--r--src/emu/fileio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/fileio.h b/src/emu/fileio.h
index 411e211d17b..7775854ec23 100644
--- a/src/emu/fileio.h
+++ b/src/emu/fileio.h
@@ -91,7 +91,7 @@ public:
const char *filename() const { return m_filename.c_str(); }
const char *fullpath() const { return m_fullpath.c_str(); }
UINT32 openflags() const { return m_openflags; }
- hash_collection &hashes(const char *types);
+ util::hash_collection &hashes(const char *types);
bool restrict_to_mediapath() const { return m_restrict_to_mediapath; }
bool part_of_mediapath(std::string path);
@@ -155,7 +155,7 @@ private:
path_iterator m_mediapaths; // media-path iterator
UINT32 m_crc; // file's CRC
UINT32 m_openflags; // flags we used for the open
- hash_collection m_hashes; // collection of hashes
+ util::hash_collection m_hashes; // collection of hashes
std::unique_ptr<util::archive_file> m_zipfile; // ZIP file pointer
dynamic_buffer m_zipdata; // ZIP file data