summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/fileio.cpp
diff options
context:
space:
mode:
author Antonio Giner <estudio@antonioginer.com>2016-03-17 22:50:29 +0100
committer Antonio Giner <estudio@antonioginer.com>2016-03-17 22:50:29 +0100
commit421656e108e7091ee9e1b14c84f0a3f6efc2ad2e (patch)
treeb71b32c3156abcdcc09f23a29586f7c8100ad6f9 /src/emu/fileio.cpp
parentda18057256726be42d096a427c3f2ebc4fd45546 (diff)
parent78ef0f037617e074692f687d13d111af9855cf2d (diff)
Merge remote-tracking branch 'refs/remotes/mamedev/master'
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 b8e0c433575..e0d7cdd7772 100644
--- a/src/emu/fileio.cpp
+++ b/src/emu/fileio.cpp
@@ -835,11 +835,11 @@ osd_file::error emu_file::attempt__7zped()
if (fileno != -1)
{
m__7zfile = std::move(_7z);
- m__7zlength = _7z->current_uncompressed_length();
+ m__7zlength = m__7zfile->current_uncompressed_length();
// build a hash with just the CRC
m_hashes.reset();
- m_hashes.add_crc(_7z->current_crc());
+ m_hashes.add_crc(m__7zfile->current_crc());
return (m_openflags & OPEN_FLAG_NO_PRELOAD) ? osd_file::error::NONE : load__7zped_file();
}