mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-02-18 12:30:33 +00:00
Fix handling of nocdrom
This commit is contained in:
parent
bebeacc895
commit
23da9e72eb
@ -295,9 +295,10 @@ static bool position2msf(const cdrom_drive_info &info, uint16 postype, uint32 po
|
|||||||
void CDROMInit(void)
|
void CDROMInit(void)
|
||||||
{
|
{
|
||||||
// No drives specified in prefs? Then add defaults
|
// No drives specified in prefs? Then add defaults
|
||||||
if (PrefsFindString("cdrom", 0) == NULL)
|
if (PrefsFindString("cdrom", 0) == NULL) {
|
||||||
SysAddCDROMPrefs();
|
SysAddCDROMPrefs();
|
||||||
|
}
|
||||||
|
else {
|
||||||
// Add drives specified in preferences
|
// Add drives specified in preferences
|
||||||
int index = 0;
|
int index = 0;
|
||||||
const char *str;
|
const char *str;
|
||||||
@ -306,6 +307,7 @@ void CDROMInit(void)
|
|||||||
if (fh)
|
if (fh)
|
||||||
drives.push_back(cdrom_drive_info(fh));
|
drives.push_back(cdrom_drive_info(fh));
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!drives.empty()) { // set to first drive by default
|
if (!drives.empty()) { // set to first drive by default
|
||||||
last_drive_num = drives.begin()->num;
|
last_drive_num = drives.begin()->num;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user