diff options
-rw-r--r-- | macosx/ExpressController.m | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/macosx/ExpressController.m b/macosx/ExpressController.m index 406abe3f9..ec2ce5d7d 100644 --- a/macosx/ExpressController.m +++ b/macosx/ExpressController.m @@ -298,12 +298,9 @@ } } -// job->file = strdup( [[NSString stringWithFormat: -// @"%@/%s - Title %d - %@.m4v", fConvertFolderString, -// title->name, title->index, [fConvertFormatPopUp -// titleOfSelectedItem]] UTF8String] ); - job->file = strdup( [[NSString stringWithFormat: - @"%@/%s.m4v", fConvertFolderString, title->name] UTF8String]); + job->file = strdup( [[NSString stringWithFormat: + @"%@/%s - Title %d.m4v", fConvertFolderString, + title->name, title->index] UTF8String] ); hb_add( fHandle, job ); } |