mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 02:18:20 -07:00
Merge remote-tracking branch 'upstream/master' into feature/ich2
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user