diff options
Diffstat (limited to 'src/frontend/mame/mame.cpp')
-rw-r--r-- | src/frontend/mame/mame.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/mame/mame.cpp b/src/frontend/mame/mame.cpp index ba4b0c65dcc..f57bac1103a 100644 --- a/src/frontend/mame/mame.cpp +++ b/src/frontend/mame/mame.cpp @@ -171,7 +171,7 @@ void mame_machine_manager::start_luaengine() { plugin_options::plugin *p = m_plugins->find(incl); if (!p) - osd_printf_warning("Could not load plugin: %s\n", incl); // HBMAME - removed fatalerror + osd_printf_warning("Could not load plugin: %s\n", incl); // MESSUI - removed fatalerror else p->m_start = true; } @@ -181,7 +181,7 @@ void mame_machine_manager::start_luaengine() { plugin_options::plugin *p = m_plugins->find(excl); if (!p) - osd_printf_warning("Unknown plugin: %s\n", excl); // HBMAME - removed fatalerror + osd_printf_warning("Unknown plugin: %s\n", excl); // MESSUI - removed fatalerror else p->m_start = false; } @@ -192,7 +192,7 @@ void mame_machine_manager::start_luaengine() { plugin_options::plugin *p = m_plugins->find(OPTION_CONSOLE); if (!p) - osd_printf_warning("Fatal error: Console plugin not found.\n"); // HBMAME - removed fatalerror + osd_printf_warning("Fatal error: Console plugin not found.\n"); // MESSUI - removed fatalerror else p->m_start = true; } |