Fixed process launching when dupes are detected
This commit is contained in:
@@ -1902,7 +1902,7 @@ Public Class frmMain
|
|||||||
SetGameInfo()
|
SetGameInfo()
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If BuildChildProcesses() > 0 Then
|
If BuildChildProcesses() > 0 And Not oProcess.Duplicate Then
|
||||||
StartChildProcesses()
|
StartChildProcesses()
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -1932,7 +1932,7 @@ Public Class frmMain
|
|||||||
Private Sub bwMain_RunWorkerCompleted(sender As System.Object, e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles bwMonitor.RunWorkerCompleted
|
Private Sub bwMain_RunWorkerCompleted(sender As System.Object, e As System.ComponentModel.RunWorkerCompletedEventArgs) Handles bwMonitor.RunWorkerCompleted
|
||||||
Dim bContinue As Boolean = True
|
Dim bContinue As Boolean = True
|
||||||
|
|
||||||
If oChildProcesses.Count > 0 Then
|
If oChildProcesses.Count > 0 And Not oProcess.Duplicate Then
|
||||||
EndChildProcesses()
|
EndChildProcesses()
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user