From 4544fabb916910b2e809d078b157bed6136f248a Mon Sep 17 00:00:00 2001 From: vcaesar Date: Sun, 25 Feb 2018 14:56:31 +0800 Subject: [PATCH] update travis support go 1.10.x --- .travis.yml | 2 +- mouse/mouse_c.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4117a20..e0dc21d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ go: # - 1.7.x - 1.8.x - 1.9.x - - "1.10" + - 1.10.x - tip addons: diff --git a/mouse/mouse_c.h b/mouse/mouse_c.h index 429f42d..34e9537 100644 --- a/mouse/mouse_c.h +++ b/mouse/mouse_c.h @@ -71,7 +71,7 @@ void calculateDeltas(CGEventRef *event, MMPoint point) /** * The next few lines are a workaround for games not detecting mouse moves. * See this issue for more information: - * https://github.com/octalmage/robotjs/issues/159 + * https://github.com/go-vgo/robotgo/issues/159 */ CGEventRef get = CGEventCreate(NULL); CGPoint mouse = CGEventGetLocation(get); @@ -244,7 +244,7 @@ void doubleClick(MMMouseButton button) void scrollMouse(int scrollMagnitude, MMMouseWheelDirection scrollDirection) { #if defined(IS_WINDOWS) - // Fix for #97 https://github.com/octalmage/robotjs/issues/97, + // Fix for #97 https://github.com/go-vgo/robotgo/issues/97, // C89 needs variables declared on top of functions (mouseScrollInput) INPUT mouseScrollInput; #endif