diff options
author | 2021-01-05 12:36:55 -0500 | |
---|---|---|
committer | 2021-01-05 12:36:55 -0500 | |
commit | 17f0286d737f33a7b92aeeb1891865fb896487bc (patch) | |
tree | 2adf5f4e3cd615bdb8b152c3ddffceb0dbdd20f5 /src/devices/bus/astrocde | |
parent | 5b4353a07dcdc85d99053bddc4d3d197406ff8e6 (diff) |
Make "slot" feature in software lists and a few related features case-sensitive
Diffstat (limited to 'src/devices/bus/astrocde')
-rw-r--r-- | src/devices/bus/astrocde/slot.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/bus/astrocde/slot.cpp b/src/devices/bus/astrocde/slot.cpp index 7e7dc8cf059..0e72d9b57b9 100644 --- a/src/devices/bus/astrocde/slot.cpp +++ b/src/devices/bus/astrocde/slot.cpp @@ -7,7 +7,6 @@ ***********************************************************************************************************/ - #include "emu.h" #include "slot.h" @@ -112,7 +111,7 @@ static int astrocade_get_pcb_id(const char *slot) { for (auto & elem : slot_list) { - if (!core_stricmp(elem.slot_option, slot)) + if (!strcmp(elem.slot_option, slot)) return elem.pcb_id; } |