summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/intv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/intv.c')
-rw-r--r--src/mess/machine/intv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/intv.c b/src/mess/machine/intv.c
index 97e7427980a..d35c7a95782 100644
--- a/src/mess/machine/intv.c
+++ b/src/mess/machine/intv.c
@@ -410,7 +410,7 @@ int intv_state::intv_load_rom_file(device_image_interface &image)
const char *filetype = image.filetype();
/* if it is in .rom format, we enter here */
- if (!mame_stricmp (filetype, "rom"))
+ if (!core_stricmp (filetype, "rom"))
{
image.fread( &temp, 1); /* header */
if (temp != 0xa8)