diff --git a/Projects/SAMufasaGUI/project1.lpi b/Projects/SAMufasaGUI/project1.lpi
index 49bfaef..7acaae6 100644
--- a/Projects/SAMufasaGUI/project1.lpi
+++ b/Projects/SAMufasaGUI/project1.lpi
@@ -7,7 +7,7 @@
-
+
@@ -41,7 +41,7 @@
-
+
@@ -173,7 +173,7 @@
-
+
@@ -305,7 +305,7 @@
-
+
@@ -315,7 +315,7 @@
-
+
@@ -332,7 +332,7 @@
-
+
@@ -341,7 +341,7 @@
-
+
@@ -380,7 +380,7 @@
-
+
@@ -397,7 +397,7 @@
-
+
@@ -410,10 +410,10 @@
-
-
+
+
-
+
@@ -544,7 +544,7 @@
-
+
@@ -565,7 +565,7 @@
-
+
@@ -697,7 +697,7 @@
-
+
@@ -756,7 +756,7 @@
-
+
@@ -848,10 +848,10 @@
-
-
+
+
-
+
@@ -868,7 +868,7 @@
-
+
@@ -894,7 +894,7 @@
-
+
@@ -929,7 +929,7 @@
-
+
diff --git a/Units/MMLCore/dtm.pas b/Units/MMLCore/dtm.pas
index a2b80ef..598776d 100644
--- a/Units/MMLCore/dtm.pas
+++ b/Units/MMLCore/dtm.pas
@@ -135,7 +135,6 @@ Var
GetCol: PMGetCol;
Begin
- writeln('areashape');
SimCol := @TClient(Client).MFinder.SimilarColors;
GetCol := @TClient(Client).MWindow.GetColor;
Case Shape Of
@@ -380,7 +379,6 @@ var
I, J, H, dH: Integer;
Found: Boolean;
TempTP: TPoint;
- RetData: TRetData;
MaxSubPointDist: TPoint;
begin
@@ -403,13 +401,15 @@ begin
If Y2 > Y1 then }
//Exit;
// Will make sure there are no out of bounds exceptions, and will make it faster
- TClient(Client).MWindow.Freeze();
- TClient(Client).MFinder.FindColorsTolerance(mP, DTM.c[Low(DTM.c)],
- x1, y1, x2, y2, DTM.t[Low(DTM.t)]);
+ with TClient(Client) do
+ begin
+ MWindow.Freeze();
- TClient(Client).MWindow.GetDimensions(H, dH);
- RetData := TClient(Client).MWindow.ReturnData(0, 0, H, dH);
+ MFinder.FindColorsTolerance(mP, DTM.c[Low(DTM.c)], x1, y1, x2, y2,
+ DTM.t[Low(DTM.t)]);
+ MWindow.GetDimensions(H, dH);
+ end;
H := High(mP);
dH := High(DTM.p);