o
asmrobot
2019-10-27 c4bd9d8c587bd1401f0fb2f60c34a4964d7afe20
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;
        }
    }