mirror of
https://github.com/libretro/RetroArch
synced 2025-03-25 16:44:01 +00:00
Change string_is_equal to string_is_equal_noncase
This commit is contained in:
parent
4c1dc265bc
commit
a379b71d42
@ -911,7 +911,7 @@ bool audio_driver_mixer_extension_supported(const char *ext)
|
|||||||
for (i = 0; i < str_list->size; i++)
|
for (i = 0; i < str_list->size; i++)
|
||||||
{
|
{
|
||||||
const char *str_ext = str_list->elems[i].data;
|
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;
|
ret = true;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user