Commit a7edf837 authored by Rocky Bernstein's avatar Rocky Bernstein

If using cddax (as opposed to cdda), then set the MRL accordingly.

parent b5b87ea1
......@@ -845,7 +845,13 @@ void OpenDialog::UpdateMRL( int i_access_method )
break;
case 3: /* CD-DA */
mrltemp = wxT("cdda://") + disc_device->GetValue();
mrltemp =
#ifdef HAVE_CDDAX
wxT("cddax://")
#else
wxT("cdda://")
#endif
+ disc_device->GetValue();
if( i_disc_title > 0 )
mrltemp += wxString::Format( wxT("@%d"), i_disc_title );
......
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