GetCurrentMonitor() description fixed

This commit is contained in:
JupiterRider 2024-11-23 19:32:44 +01:00
parent 13942ea31b
commit 31abcc5ee4
2 changed files with 2 additions and 2 deletions

View file

@ -1179,7 +1179,7 @@ func GetMonitorCount() int {
return int(getMonitorCount()) return int(getMonitorCount())
} }
// GetCurrentMonitor - Get current connected monitor // GetCurrentMonitor - Get current monitor where window is placed
func GetCurrentMonitor() int { func GetCurrentMonitor() int {
return int(getCurrentMonitor()) return int(getCurrentMonitor())
} }

View file

@ -338,7 +338,7 @@ func GetMonitorCount() int {
return v return v
} }
// GetCurrentMonitor - Get current connected monitor // GetCurrentMonitor - Get current monitor where window is placed
func GetCurrentMonitor() int { func GetCurrentMonitor() int {
ret := C.GetCurrentMonitor() ret := C.GetCurrentMonitor()
v := (int)(ret) v := (int)(ret)