ATAPI CD-ROM normal model now identifies as a SONY CDU-76 when the machine is a Sony, the Sony Vaio recovery disk should now work.

This commit is contained in:
OBattler
2022-11-19 23:40:14 +01:00
parent 38b9d4e9fa
commit c63f9e23a7
3 changed files with 19 additions and 0 deletions

View File

@@ -12139,3 +12139,9 @@ machine_has_mouse(void)
{
return (machines[machine].flags & MACHINE_MOUSE);
}
int
machine_is_sony(void)
{
return (!strcmp(machines[machine].internal_name, "pcv90"));
}