summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/nes_pcb.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/nes_pcb.hxx')
-rw-r--r--src/devices/bus/nes/nes_pcb.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/nes/nes_pcb.hxx b/src/devices/bus/nes/nes_pcb.hxx
index e26bd71dfd2..b70340e6479 100644
--- a/src/devices/bus/nes/nes_pcb.hxx
+++ b/src/devices/bus/nes/nes_pcb.hxx
@@ -337,7 +337,7 @@ static const nes_pcb *nes_pcb_lookup( const char *slot )
{
for (auto & elem : pcb_list)
{
- if (!core_stricmp(elem.slot_opt, slot))
+ if (!strcmp(elem.slot_opt, slot))
return &elem;
}
return nullptr;