diff options
Diffstat (limited to 'src/emu/drivenum.c')
-rw-r--r-- | src/emu/drivenum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/drivenum.c b/src/emu/drivenum.c index c5d5c6907db..4d39f9d8cc4 100644 --- a/src/emu/drivenum.c +++ b/src/emu/drivenum.c @@ -60,7 +60,7 @@ bool driver_list::matches(const char *wildstring, const char *string) return false; // match everything else normally - return (wildstring == NULL || mame_strwildcmp(wildstring, string) == 0); + return (wildstring == NULL || core_strwildcmp(wildstring, string) == 0); } @@ -73,7 +73,7 @@ int driver_list::driver_sort_callback(const void *elem1, const void *elem2) { const game_driver * const *item1 = reinterpret_cast<const game_driver * const *>(elem1); const game_driver * const *item2 = reinterpret_cast<const game_driver * const *>(elem2); - return mame_stricmp((*item1)->name, (*item2)->name); + return core_stricmp((*item1)->name, (*item2)->name); } |