summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/drivenum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/drivenum.cpp')
-rw-r--r--src/emu/drivenum.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/drivenum.cpp b/src/emu/drivenum.cpp
index 5f67013c603..4f111d35f0f 100644
--- a/src/emu/drivenum.cpp
+++ b/src/emu/drivenum.cpp
@@ -92,7 +92,7 @@ int driver_list::penalty_compare(const char *source, const char *target)
for ( ; *source && *target; target++)
{
// do a case insensitive match
- bool match = (tolower((UINT8)*source) == tolower((UINT8)*target));
+ bool match = (tolower((uint8_t)*source) == tolower((uint8_t)*target));
// if we matched, advance the source
if (match)