1
0
Fork 0

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:
Ulf Wohlers 2003-03-12 13:20:43 +00:00
parent 90b535d377
commit f9c6a97f5e

View file

@ -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;