mirror of
				https://github.com/raysan5/raylib.git
				synced 2025-10-26 12:27:01 +00:00 
			
		
		
		
	REVIEWED: GetCurrentMonitor() #3472
				
					
				
			This commit is contained in:
		| @@ -751,6 +751,11 @@ int GetCurrentMonitor(void) | |||||||
|         } |         } | ||||||
|         else |         else | ||||||
|         { |         { | ||||||
|  |             // In case the window is between two monitors, we use below logic | ||||||
|  |             // to try to detect the "current monitor" for that window, note that | ||||||
|  |             // this is probably an overengineered solution for a very side case | ||||||
|  |             // trying to match SDL behaviour | ||||||
|  |              | ||||||
|             int closestDist = 0x7FFFFFFF; |             int closestDist = 0x7FFFFFFF; | ||||||
|  |  | ||||||
|             // Window center position |             // Window center position | ||||||
| @@ -786,24 +791,12 @@ int GetCurrentMonitor(void) | |||||||
|                     } |                     } | ||||||
|  |  | ||||||
|                     int xclosest = wcx; |                     int xclosest = wcx; | ||||||
|                     if (wcx < mx) |                     if (wcx < mx) xclosest = mx; | ||||||
|                     { |                     else if (wcx > right) xclosest = right; | ||||||
|                         xclosest = mx; |  | ||||||
|                     } |  | ||||||
|                     else if (wcx > right) |  | ||||||
|                     { |  | ||||||
|                         xclosest = right; |  | ||||||
|                     } |  | ||||||
|  |  | ||||||
|                     int yclosest = wcy; |                     int yclosest = wcy; | ||||||
|                     if (wcy < my) |                     if (wcy < my) yclosest = my; | ||||||
|                     { |                     else if (wcy > bottom) yclosest = bottom; | ||||||
|                         yclosest = my; |  | ||||||
|                     } |  | ||||||
|                     else if (wcy > bottom) |  | ||||||
|                     { |  | ||||||
|                         yclosest = bottom; |  | ||||||
|                     } |  | ||||||
|  |  | ||||||
|                     int dx = wcx - xclosest; |                     int dx = wcx - xclosest; | ||||||
|                     int dy = wcy - yclosest; |                     int dy = wcy - yclosest; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Ray
					Ray