diff options
author | 2016-01-11 14:59:24 +0100 | |
---|---|---|
committer | 2016-01-11 14:59:24 +0100 | |
commit | f0dc809ab860ad1d62c53d5163a6da3f41deb631 (patch) | |
tree | 00f88c9593a1262cac91f8c2442b6eb921ea56cc /src/emu/ui/ui.cpp | |
parent | e0358a4ce4ca36802866483fc2c2fef9ad61a90a (diff) |
image_manager modernized and move some things around (nw)
Diffstat (limited to 'src/emu/ui/ui.cpp')
-rw-r--r-- | src/emu/ui/ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui/ui.cpp b/src/emu/ui/ui.cpp index 5230d148a44..bf9cbadf31d 100644 --- a/src/emu/ui/ui.cpp +++ b/src/emu/ui/ui.cpp @@ -358,7 +358,7 @@ void ui_manager::display_startup_screens(bool first_time, bool show_disclaimer) break; case 3: - if (show_mandatory_fileman && image_mandatory_scan(machine(), messagebox_text).length() > 0) + if (show_mandatory_fileman && machine().image().mandatory_scan(messagebox_text).length() > 0) { std::string warning; warning.assign("This driver requires images to be loaded in the following device(s): ").append(messagebox_text.substr(0, messagebox_text.length() - 2)); |