diff options
Diffstat (limited to 'src/frontend/mame/ui/ui.cpp')
-rw-r--r-- | src/frontend/mame/ui/ui.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp index b857d613c12..026bf0c34f7 100644 --- a/src/frontend/mame/ui/ui.cpp +++ b/src/frontend/mame/ui/ui.cpp @@ -2165,7 +2165,10 @@ void mame_ui_manager::save_main_option() { // parse the file std::string error; - emu_options options(emu_options::option_support::GENERAL_ONLY); // This way we make sure that all OSD parts are in + emu_options options(emu_options::option_support::GENERAL_ONLY); + + // This way we make sure that all OSD parts are in + osd_setup_osd_specific_emu_options(options); options.copy_from(machine().options()); |