Hide machine types with no available machines
This commit is contained in:
@@ -826,10 +826,17 @@ machine_type_get_internal_name(int id)
|
|||||||
int
|
int
|
||||||
machine_type_available(int id)
|
machine_type_available(int id)
|
||||||
{
|
{
|
||||||
if ((id > 0) && (id < MACHINE_TYPE_MAX))
|
int c = 0;
|
||||||
return 1;
|
|
||||||
else
|
if ((id > 0) && (id < MACHINE_TYPE_MAX)) {
|
||||||
return 0;
|
while (machine_get_internal_name_ex(c) != NULL) {
|
||||||
|
if (machine_available(c) && (machines[c].type == id))
|
||||||
|
return 1;
|
||||||
|
c++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user