summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend')
-rw-r--r--src/frontend/mame/mame.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/mame/mame.cpp b/src/frontend/mame/mame.cpp
index 9334cb3445b..bfd98bc17fe 100644
--- a/src/frontend/mame/mame.cpp
+++ b/src/frontend/mame/mame.cpp
@@ -162,7 +162,7 @@ void mame_machine_manager::start_luaengine()
{
plugin *p = m_plugins->find(incl);
if (!p)
- fatalerror("Could not load plugin: %s\n", incl.c_str());
+ fatalerror("Fatal error: Could not load plugin: %s\n", incl.c_str());
p->m_start = true;
}
@@ -171,7 +171,7 @@ void mame_machine_manager::start_luaengine()
{
plugin *p = m_plugins->find(excl);
if (!p)
- fatalerror("Unknown plugin: %s\n", excl.c_str());
+ fatalerror("Fatal error: Unknown plugin: %s\n", excl.c_str());
p->m_start = false;
}
}
@@ -181,7 +181,7 @@ void mame_machine_manager::start_luaengine()
{
plugin *p = m_plugins->find(OPTION_CONSOLE);
if (!p)
- fatalerror("Console plugin not found.\n");
+ fatalerror("Fatal error: Console plugin not found.\n");
p->m_start = true;
}