]> git.sesse.net Git - vlc/commitdiff
* syntax to specify the dvd title/chapter to open has changed...
authorBenjamin Pracht <bigben@videolan.org>
Sat, 4 Sep 2004 10:39:44 +0000 (10:39 +0000)
committerBenjamin Pracht <bigben@videolan.org>
Sat, 4 Sep 2004 10:39:44 +0000 (10:39 +0000)
modules/gui/macosx/open.m

index 021a74f61d1e82935b0bf5a75286c171fc325fc2..3398f5d0681dc34f8a56bf205cf0a72f980e3136 100644 (file)
@@ -555,7 +555,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
         if ( [o_device isEqualToString:
                 [NSString stringWithFormat: _NS("No %@s found"), o_type]] )
             o_device = @"";
-        o_mrl_string = [NSString stringWithFormat: @"vcd://%@@%i,%i",
+        o_mrl_string = [NSString stringWithFormat: @"vcd://%@@%i:%i",
                         o_device, i_title, i_chapter]; 
     }
     else if ( [o_type isEqualToString: _NS("Audio CD")] )
@@ -575,7 +575,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
             o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@",
                             o_device]; 
         else
-            o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i,%i",
+            o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i:%i",
                             o_device, i_title, i_chapter]; 
     }
     else /* VIDEO_TS folder */
@@ -584,7 +584,7 @@ NSArray *GetEjectableMediaOfClass( const char *psz_class )
             o_mrl_string = [NSString stringWithFormat: @"dvdnav://%@",
                             o_videots]; 
         else
-            o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i,%i",
+            o_mrl_string = [NSString stringWithFormat: @"dvdread://%@@%i:%i",
                             o_videots, i_title, i_chapter]; 
     }