1
0
Fork 0

Add ripsaws one line patch to fix bug 488

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@4173
This commit is contained in:
Peter Veenstra 2018-11-17 13:29:02 +00:00
parent d0ecdf85b2
commit 9ffb5627aa

View file

@ -132,7 +132,7 @@ void DriveManager::InitializeDrive(int drive) {
driveInfo.currentDisk = 0;
DOS_Drive* disk = driveInfo.disks[driveInfo.currentDisk];
Drives[currentDrive] = disk;
disk->Activate();
if (driveInfo.disks.size() > 1) disk->Activate();
}
}