always use cdrom fake interface if not win or linux.
Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@754
This commit is contained in:
parent
90b535d377
commit
f9c6a97f5e
1 changed files with 4 additions and 1 deletions
|
@ -239,8 +239,11 @@ int CMscdex::AddDrive(Bit16u _drive, char* physicalPath, Bit8u& subUnit)
|
|||
cdrom[numDrives] = new CDROM_Interface_Aspi();
|
||||
LOG(LOG_MISC,"MSCDEX: ASPI Interface.");
|
||||
}
|
||||
#else
|
||||
#elif __linux__
|
||||
cdrom[numDrives] = new CDROM_Interface_Linux();
|
||||
#else // No support on this machine...
|
||||
cdrom[numDrives] = new CDROM_Interface_Fake();
|
||||
LOG(LOG_MISC|LOG_ERROR,"MSCDEX: No MSCDEX support on this machine.");
|
||||
#endif
|
||||
LOG(LOG_MISC,"MSCDEX: Mounting physical cdrom: %s" ,physicalPath);
|
||||
} break;
|
||||
|
|
Loading…
Add table
Reference in a new issue