From a379b71d428e694bceaded268dd171f669101d65 Mon Sep 17 00:00:00 2001 From: twinaphex <libretro@gmail.com> Date: Sat, 27 May 2017 21:18:45 +0200 Subject: [PATCH] Change string_is_equal to string_is_equal_noncase --- audio/audio_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/audio_driver.c b/audio/audio_driver.c index e842d359d5..ca485d2b48 100644 --- a/audio/audio_driver.c +++ b/audio/audio_driver.c @@ -911,7 +911,7 @@ bool audio_driver_mixer_extension_supported(const char *ext) for (i = 0; i < str_list->size; i++) { const char *str_ext = str_list->elems[i].data; - if (string_is_equal(str_ext, ext)) + if (string_is_equal_noncase(str_ext, ext)) { ret = true; break;