diff options
Diffstat (limited to 'src/emu/fileio.cpp')
-rw-r--r-- | src/emu/fileio.cpp | 4 |
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(); } |