Skip to content

Commit

Permalink
fix the all type when not using double
Browse files Browse the repository at this point in the history
  • Loading branch information
cheat-engine committed Feb 1, 2022
1 parent faa0ef4 commit e6c4864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cheat Engine/MainUnit2.pas
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ procedure LoadSettingsFromRegistry(skipPlugins: boolean=false);
ScanAllTypes:=[];
if cbAllByte.checked then ScanAllTypes:=ScanAllTypes+[vtByte];
if cbAllWord.checked then ScanAllTypes:=ScanAllTypes+[vtWord];
if cbAllDouble.checked then ScanAllTypes:=ScanAllTypes+[vtDword];
if cbAllDword.checked then ScanAllTypes:=ScanAllTypes+[vtDword];
if cbAllQword.checked then ScanAllTypes:=ScanAllTypes+[vtQword];
if cbAllSingle.checked then ScanAllTypes:=ScanAllTypes+[vtSingle];
if cbAllDouble.checked then ScanAllTypes:=ScanAllTypes+[vtDouble];
Expand Down

0 comments on commit e6c4864

Please sign in to comment.