Skip to content
Snippets Groups Projects
Commit a96caa07 authored by Alex Pasadyn's avatar Alex Pasadyn Committed by Alexandre Julliard
Browse files

Fix return from IOCTL_CDROM_CHECK_VERIFY.

parent 52574ed7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
/******************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment