Fix return from IOCTL_CDROM_CHECK_VERIFY.

This commit is contained in:
Alex Pasadyn 2002-12-12 22:23:35 +00:00 committed by Alexandre Julliard
parent 52574ed701
commit a96caa0700
1 changed files with 1 additions and 1 deletions

View File

@ -759,7 +759,7 @@ static DWORD CDROM_Verify(int dev)
SUB_Q_CHANNEL_DATA data;
fmt.Format = IOCTL_CDROM_CURRENT_POSITION;
return CDROM_ReadQChannel(dev, &fmt, &data) ? 0 : 1;
return CDROM_ReadQChannel(dev, &fmt, &data) ? 1 : 0;
}
/******************************************************************