diff options
author | johnallen <[email protected]> | 2007-01-04 00:40:45 +0000 |
---|---|---|
committer | johnallen <[email protected]> | 2007-01-04 00:40:45 +0000 |
commit | b30e6cee64f1005cd31f5deb00ca5120c9852d23 (patch) | |
tree | 07804ef41800eacf59711f42ee56aaf9bf1f8684 /macosx/ExpressController.m | |
parent | ae5459b723b61fb8835beb3d096b3103cba448af (diff) |
added title # to output filename
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@88 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/ExpressController.m')
-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 ); } |