diff options
author | dynaflash <[email protected]> | 2010-08-20 15:07:37 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2010-08-20 15:07:37 +0000 |
commit | c000040c0837325b5081e699a17743e1eb74c3eb (patch) | |
tree | d8cb397daa6359e5a00721d5643adb618411b66b /macosx | |
parent | 4254c0d0972f58ae02f9bd01a0b969acb11793c2 (diff) |
MacGui: Fix issue where multi instance was improperly detecting the number of instances.
- Fixes an issue where the second instance would ignore the first instances queue and resetting running encodes back to pending.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3484 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/Controller.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index ee08ce182..08c843f88 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -312,9 +312,8 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [self writeToActivityLog: "Pid for this instance:%d", pidNum]; /* Tell fQueueController what our pidNum is */ [fQueueController setPidNum:pidNum]; - - hbInstances++; } + hbInstances++; } } return hbInstances; |