diff options
author | jbrjake <[email protected]> | 2007-05-15 20:59:42 +0000 |
---|---|---|
committer | jbrjake <[email protected]> | 2007-05-15 20:59:42 +0000 |
commit | e783459abbad188cb8575beb55a92986d6594b4f (patch) | |
tree | a5084efaba447e18b348e4c0a9a9d9f68c3b6ade | |
parent | b88810b33d71c4849a0655ae642b336481e5229e (diff) |
MacGui: fix file suffix creation for .ogm (the break was misplaced in the case statement, so it'd always be null instead of .ogm).
Thanks for pointing it out, cleaner!
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@585 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 4bc8cb583..cbe2ea4ed 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -433,10 +433,10 @@ return registrationDictionary; break; case 1: ext = "avi"; + break; case 2: - break; ext = "ogm"; - break; + break; } |