Skip to content

Commit

Permalink
fix the pointerscanner settings from erasing itself
Browse files Browse the repository at this point in the history
  • Loading branch information
cheat-engine committed Sep 20, 2016
1 parent a60ebeb commit c32489c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cheat Engine/MainUnit2.pas
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ procedure initcetitle;



const beta=' Beta 1'; //empty this for a release
const beta=' Beta 2'; //empty this for a release

var
CEnorm:string;
Expand Down
1 change: 0 additions & 1 deletion Cheat Engine/PointerscannerSettingsFrm.lfm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ object frmPointerScannerSettings: TfrmPointerScannerSettings
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
PopupMode = pmAuto
Position = poScreenCenter
LCLVersion = '1.6.0.4'
object cbValueType: TComboBox
Expand Down
4 changes: 2 additions & 2 deletions Cheat Engine/Tutorial/tutorial.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<CharSet Value=""/>
<StringTable ProductVersion=""/>
</VersionInfo>
<BuildModes Count="4" Active="release 32-Bit">
<BuildModes Count="4" Active="release 64-Bit">
<Item1 Name="debug" Default="True"/>
<Item2 Name="release">
<CompilerOptions>
Expand Down Expand Up @@ -232,7 +232,7 @@
<ResourceBaseClass Value="Form"/>
<IsVisibleTab Value="True"/>
<EditorIndex Value="3"/>
<CursorPos X="41" Y="57"/>
<CursorPos X="22" Y="9"/>
<UsageCount Value="61"/>
<Loaded Value="True"/>
<LoadedDesigner Value="True"/>
Expand Down
7 changes: 6 additions & 1 deletion Cheat Engine/bin/defines.lua
Original file line number Diff line number Diff line change
Expand Up @@ -377,4 +377,9 @@ SPF_PERSIST_XML = ( 1 << 5 )
SPF_NLP_SPEAK_PUNC = ( 1 << 6 )
SPF_PARSE_SAPI = ( 1 << 7 )
SPF_PARSE_SSML = ( 1 << 8 )
SPF_PARSE_AUTODETECT = 0
SPF_PARSE_AUTODETECT = 0

wrSignaled=0
wrTimeout=1
wrAbandoned=2
wrError=3
2 changes: 1 addition & 1 deletion Cheat Engine/formsettingsunit.pas
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,7 @@ procedure TformSettings.Default1Click(Sender: TObject);

procedure TformSettings.FormDestroy(Sender: TObject);
begin

formSettings:=nil;
end;

procedure TformSettings.FormShow(Sender: TObject);
Expand Down
1 change: 1 addition & 0 deletions Cheat Engine/pointerscannerfrm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -952,6 +952,7 @@ procedure Tfrmpointerscanner.Method3Fastspeedandaveragememoryusage1Click(

if frmpointerscannersettings.Visible then exit; //already open, so no need to make again


if SkipNextScanSettingsWasTrue or (frmpointerscannersettings.Showmodal=mrok) then
begin
new1.click;
Expand Down
1 change: 1 addition & 0 deletions Cheat Engine/release/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ registerEXETrainerFeature: Lets you add extra files to the exe trainer file pack
getFileVersion(): A function to get version information from a file
mouse_event() : Lets you send mouse events to windows. (move, click, etc...)
loadFontFromStream() : Lets you load a font from a memory stream. (Useful for trainers that use a custom font)
added several thread synchronization objects

lua changes:
dbk_writesIgnoreWriteProtection() now also disables virtualprotectex calls from CE
Expand Down

0 comments on commit c32489c

Please sign in to comment.