Machine table fixes

This commit is contained in:
RichardG867
2020-07-13 14:31:28 -03:00
parent f4f7877ef6
commit 7b79f75ffa
2 changed files with 7 additions and 5 deletions

View File

@@ -517,6 +517,8 @@ load_machine(void)
/* Detect the old model typos and fix them. */
if (! strcmp(p, "p55r2p4")) {
machine = machine_get_machine_from_internal_name("p55t2p4");
} else if (! strcmp(p, "8500ttc")) {
machine = machine_get_machine_from_internal_name("8600ttc");
} else {
machine = machine_get_machine_from_internal_name(p);
}