diff --git a/raylib/raylib_purego.go b/raylib/raylib_purego.go index e94af0c..b85e440 100644 --- a/raylib/raylib_purego.go +++ b/raylib/raylib_purego.go @@ -1179,7 +1179,7 @@ func GetMonitorCount() int { return int(getMonitorCount()) } -// GetCurrentMonitor - Get current connected monitor +// GetCurrentMonitor - Get current monitor where window is placed func GetCurrentMonitor() int { return int(getCurrentMonitor()) } diff --git a/raylib/rcore.go b/raylib/rcore.go index ccfd221..1b2e5f5 100644 --- a/raylib/rcore.go +++ b/raylib/rcore.go @@ -338,7 +338,7 @@ func GetMonitorCount() int { return v } -// GetCurrentMonitor - Get current connected monitor +// GetCurrentMonitor - Get current monitor where window is placed func GetCurrentMonitor() int { ret := C.GetCurrentMonitor() v := (int)(ret)