Get rid of machine_get_machine_from_internal_name_ex

This commit is contained in:
Alexander Babikov
2026-01-01 16:41:23 +05:00
parent 2b99bf64bd
commit 46d0d90f8d
4 changed files with 11 additions and 22 deletions

View File

@@ -20700,21 +20700,6 @@ machine_get_machine_from_internal_name(const char *s)
c++;
}
return 0;
}
int
machine_get_machine_from_internal_name_ex(const char *s)
{
int c = 0;
while (machines[c].init != NULL) {
if (!strcmp(machines[c].internal_name, s))
return c;
c++;
}
return -1;
}