Fixed wrong argument in inputs.s input_desktop

This commit is contained in:
spy 2022-12-08 17:16:28 +01:00
parent 33662480e9
commit f1bf118866
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ void input_desktop_add(
target->list[target->cur] = name;
int name_len = strlen(name);
char* name_simple = strdup(name_len);
char* name_simple = strdup(name);
if (strstr(name_simple, " ") != NULL)
{