Skip to content

Commit

Permalink
cancelling the fileselection from a pointermap generation launched fr…
Browse files Browse the repository at this point in the history
…om the main gui will close as well
  • Loading branch information
cheat-engine committed Jan 8, 2016
1 parent 3d3d069 commit 4328705
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Cheat Engine/pointerscannerfrm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,11 @@ procedure Tfrmpointerscanner.Method3Fastspeedandaveragememoryusage1Click(

if frmpointerscannersettings.rbGeneratePointermap.checked then //show a .scandata dialog instad of a .ptr
begin
if not savedialog2.execute then exit;
if not savedialog2.execute then
begin
if SkipNextScanSettings then close;
exit;
end;
filename:=savedialog2.filename;
end
else
Expand Down

0 comments on commit 4328705

Please sign in to comment.