mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
- Allow 0x80 to be a BIOS assigned drive number for CD-ROM.
svn path=/trunk/; revision=11483
This commit is contained in:
parent
6f9c0194f4
commit
12143ef1ae
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ BOOL FsOpenVolume(U32 DriveNumber, U32 PartitionNumber)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for ISO9660 file system type
|
// Check for ISO9660 file system type
|
||||||
if (DriveNumber > 0x80 && FsRecIsIso9660(DriveNumber))
|
if (DriveNumber >= 0x80 && FsRecIsIso9660(DriveNumber))
|
||||||
{
|
{
|
||||||
DbgPrint((DPRINT_FILESYSTEM, "Drive is a cdrom drive. Assuming ISO-9660 file system.\n"));
|
DbgPrint((DPRINT_FILESYSTEM, "Drive is a cdrom drive. Assuming ISO-9660 file system.\n"));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue