From 3f84724106a234f5e3c2193ae9727a5f0a685e4d Mon Sep 17 00:00:00 2001 From: libretroadmin Date: Sat, 15 Jul 2023 09:56:07 +0200 Subject: [PATCH] Fix typo --- retroarch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/retroarch.c b/retroarch.c index 0ec848bba1a..a51919ccce4 100644 --- a/retroarch.c +++ b/retroarch.c @@ -1567,7 +1567,7 @@ struct string_list *string_list_new_special(enum string_list_type type, for (i = 0; hid_drivers[i]; i++) { const char *opt = hid_drivers[i]->ident; - *len += STLREN_CONST(hid_drivers[i]->ident) + 1; + *len += STRLEN_CONST(hid_drivers[i]->ident) + 1; /* Don't allow the user to set input HID driver to "null" using the UI. * Can prevent the user from locking him/herself out of the program. */