diff options
Diffstat (limited to 'src/emu/ui/utils.h')
-rw-r--r-- | src/emu/ui/utils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/ui/utils.h b/src/emu/ui/utils.h index a2f24a20479..5c1485e102b 100644 --- a/src/emu/ui/utils.h +++ b/src/emu/ui/utils.h @@ -271,9 +271,9 @@ void render_load_jpeg(_T &bitmap, emu_file &file, const char *dirname, const cha else fname.assign(dirname).append(PATH_SEPARATOR).append(filename); - file_error filerr = file.open(fname.c_str()); + osd_file::error filerr = file.open(fname.c_str()); - if (filerr != FILERR_NONE) + if (filerr != osd_file::error::NONE) return; // define standard JPEG structures |