asmrobot
2019-10-29 f25f89101a98ad815c0ae2d25e1a8dc35d53a5dd
src/RichCreator.Utility/CV/ChannelCVHelper.cs
@@ -112,9 +112,9 @@
        /// <param name="confirmButtonPoint"></param>
        /// <param name="gameRect"></param>
        /// <returns></returns>
        public static bool HasConnectIsVaildWindow(out ZTPoint confirmButtonPoint, ZTRectangle gameRect)
        public static bool HasConnectIsVaildWindow(out Structs.ZTPoint confirmButtonPoint, ZTRectangle gameRect)
        {
            confirmButtonPoint = ZTPoint.Empty;
            confirmButtonPoint = Structs.ZTPoint.Empty;
            ZTRectangle tempRect = ZTRectangle.Empty;
            if (!CVHelper.RectExistsArray(out tempRect, gameRect, DisconnectionWhiteText))
            {
@@ -124,7 +124,7 @@
                }
            }
            confirmButtonPoint = new ZTPoint(tempRect.GetCenterPoint().X, tempRect.End.Y);
            confirmButtonPoint = new Structs.ZTPoint(tempRect.GetCenterPoint().X, tempRect.End.Y);
            return true;
        }
    }