diff options
author | 2014-03-24 22:05:08 +0000 | |
---|---|---|
committer | 2014-03-24 22:05:08 +0000 | |
commit | 2e5ea37f654a1c4f44adb014f1b19f0378c6ab6f (patch) | |
tree | 42f5f8918aabae9abadb847ebd64e52a502cd87c /src/emu/bus/snes | |
parent | 5b375bb60a6ad8bebf14b52f34a4ef2807d805e5 (diff) |
removed mame_* aliases and just use core_* functions (nw)
Diffstat (limited to 'src/emu/bus/snes')
-rw-r--r-- | src/emu/bus/snes/snes_slot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/bus/snes/snes_slot.c b/src/emu/bus/snes/snes_slot.c index 3628d0dd4f9..61997ab448e 100644 --- a/src/emu/bus/snes/snes_slot.c +++ b/src/emu/bus/snes/snes_slot.c @@ -309,7 +309,7 @@ static int sns_get_pcb_id(const char *slot) { for (int i = 0; i < ARRAY_LENGTH(slot_list); i++) { - if (!mame_stricmp(slot_list[i].slot_option, slot)) + if (!core_stricmp(slot_list[i].slot_option, slot)) return slot_list[i].pcb_id; } |