Commit a96caa07 authored by Alex Pasadyn's avatar Alex Pasadyn Committed by Alexandre Julliard

Fix return from IOCTL_CDROM_CHECK_VERIFY.

parent 52574ed7
......@@ -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;
}
/******************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment