diff options
Diffstat (limited to 'src/emu/ui/datfile.cpp')
-rw-r--r-- | src/emu/ui/datfile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui/datfile.cpp b/src/emu/ui/datfile.cpp index 7a5ebb57e6f..799cdaf3823 100644 --- a/src/emu/ui/datfile.cpp +++ b/src/emu/ui/datfile.cpp @@ -1,5 +1,5 @@ // license:BSD-3-Clause -// copyright-holders:Dankan1890 +// copyright-holders:Maurizio Petrarota /*************************************************************************** ui/datfile.cpp @@ -548,7 +548,7 @@ bool datfile_manager::parseopen(const char *filename) // so it's better and faster use standard C fileio functions. emu_file file(machine().ui().options().history_path(), OPEN_FLAG_READ); - if (file.open(filename) != FILERR_NONE) + if (file.open(filename) != osd_file::error::NONE) return false; m_fullpath = file.fullpath(); |