Commit 766237dc authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* modules/gui/macosx/open.m: dvdplay:// -->> dvdnav://

parent 26eb85c0
...@@ -486,16 +486,16 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) ...@@ -486,16 +486,16 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
[NSString stringWithFormat: _NS("No %@s found"), o_type]] ) [NSString stringWithFormat: _NS("No %@s found"), o_type]] )
o_device = @""; o_device = @"";
if ( b_menus ) if ( b_menus )
o_mrl_string = [NSString stringWithFormat: @"dvdplay://%@", o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@",
o_device]; o_device];
else else
o_mrl_string = [NSString stringWithFormat: @"dvdold://%@@%i,%i", o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i,%i",
o_device, i_title, i_chapter]; o_device, i_title, i_chapter];
} }
else /* VIDEO_TS folder */ else /* VIDEO_TS folder */
{ {
if ( b_menus ) if ( b_menus )
o_mrl_string = [NSString stringWithFormat: @"dvdplay://%@", o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@",
o_videots]; o_videots];
else else
o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i,%i", o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i,%i",
......
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