Merge remote-tracking branch 'upstream/master' into feature/ich2

This commit is contained in:
Jasmine Iwanek
2023-05-16 15:44:04 -04:00
158 changed files with 4399 additions and 3190 deletions

View File

@@ -304,7 +304,7 @@ const machine_t machines[] = {
.ram = {
.min = 128,
.max = 640,
.step = 128
.step = 64
},
.nvrmask = 0,
.kbc_device = NULL, /* TODO: No specific kbd_device yet */
@@ -13286,11 +13286,11 @@ machine_get_machine_from_internal_name(char *s)
while (machines[c].init != NULL) {
if (!strcmp(machines[c].internal_name, (const char *) s))
return (c);
return c;
c++;
}
return (0);
return 0;
}
int