Commit 7adeecde authored by Benjamin Pracht's avatar Benjamin Pracht

* syntax to specify the dvd title/chapter to open has changed...

parent 9c36906f
...@@ -555,7 +555,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) ...@@ -555,7 +555,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
if ( [o_device isEqualToString: if ( [o_device isEqualToString:
[NSString stringWithFormat: _NS("No %@s found"), o_type]] ) [NSString stringWithFormat: _NS("No %@s found"), o_type]] )
o_device = @""; o_device = @"";
o_mrl_string = [NSString stringWithFormat: @"vcd://%@@%i,%i", o_mrl_string = [NSString stringWithFormat: @"vcd://%@@%i:%i",
o_device, i_title, i_chapter]; o_device, i_title, i_chapter];
} }
else if ( [o_type isEqualToString: _NS("Audio CD")] ) else if ( [o_type isEqualToString: _NS("Audio CD")] )
...@@ -575,7 +575,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) ...@@ -575,7 +575,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@", o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@",
o_device]; o_device];
else else
o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%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 */
...@@ -584,7 +584,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class ) ...@@ -584,7 +584,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@", 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",
o_videots, i_title, i_chapter]; o_videots, i_title, i_chapter];
} }
......
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