summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/mconfig.c
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2014-03-24 22:05:08 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2014-03-24 22:05:08 +0000
commit2e5ea37f654a1c4f44adb014f1b19f0378c6ab6f (patch)
tree42f5f8918aabae9abadb847ebd64e52a502cd87c /src/emu/mconfig.c
parent5b375bb60a6ad8bebf14b52f34a4ef2807d805e5 (diff)
removed mame_* aliases and just use core_* functions (nw)
Diffstat (limited to 'src/emu/mconfig.c')
-rw-r--r--src/emu/mconfig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/mconfig.c b/src/emu/mconfig.c
index 2dab4ad964d..1c9c591baa9 100644
--- a/src/emu/mconfig.c
+++ b/src/emu/mconfig.c
@@ -34,7 +34,7 @@ machine_config::machine_config(const game_driver &gamedrv, emu_options &options)
// construct the config
(*gamedrv.machine_config)(*this, NULL, NULL);
- bool is_selected_driver = mame_stricmp(gamedrv.name,options.system_name())==0;
+ bool is_selected_driver = core_stricmp(gamedrv.name,options.system_name())==0;
// intialize slot devices - make sure that any required devices have been allocated
slot_interface_iterator slotiter(root_device());
for (device_slot_interface *slot = slotiter.first(); slot != NULL; slot = slotiter.next())