bug in FinishManualGrab method
Brought to you by:
tstuefe
In tscap32_rt.pas, in method FinishManualGrab on or
about line 3257, the following line:
if FGrabbingNow and ((FParameter.CapTechnique =
ctManualIntoFile) or (FParameter.CapTechnique =
ctManualIntoFile)) then
Needs to be changed to:
if FGrabbingNow and ((FParameter.CapTechnique =
ctManualIntoMem) or (FParameter.CapTechnique =
ctManualIntoFile)) then
Note that the original code checks for
"ctManualIntoFile" twice (rather than ctManualIntoMem
and ctManualIntoFile). This prevents FinishManualGrab
from executing, which causes subsequent calls to
CapOrder:=start to fail.
Logged In: YES
user_id=745480
Thanks, Steve, good catch. I'll change that.
... thomas
Logged In: YES
user_id=745480
Thanks, Steve, good catch. I'll change that.
... thomas