diff options
Diffstat (limited to 'src/emu/ui/datfile.cpp')
-rw-r--r-- | src/emu/ui/datfile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui/datfile.cpp b/src/emu/ui/datfile.cpp index 7a5ebb57e6f..35dfde7249d 100644 --- a/src/emu/ui/datfile.cpp +++ b/src/emu/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(); |