MKE: More clean-ups, made port 3 return 0xFF when read (fixes Windows 95's built-in Panasonic driver), and added the Non-Creative version as well.

This commit is contained in:
OBattler
2025-07-27 19:21:24 +02:00
parent 1b142299e5
commit 26249b9c4c
3 changed files with 26 additions and 19 deletions

View File

@@ -120,12 +120,13 @@ static const struct {
const device_t *device;
} controllers[] = {
// clang-format off
{ &cdrom_interface_none_device },
{ &cdrom_interface_none_device },
#ifdef USE_CDROM_MITSUMI
{ &mitsumi_cdrom_device },
{ &mitsumi_cdrom_device },
#endif
{ &mke_cdrom_device },
{ NULL }
{ &mke_cdrom_noncreative_device },
{ &mke_cdrom_device },
{ NULL }
// clang-format on
};