From 9157417feaafc411433f289248f65b0928ee7c06 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 20 Mar 2002 22:16:00 +0000 Subject: [PATCH] Fix bug in the alternative code for -DNO_MULTIMON (was breaking Cygwin build). [originally from svn r1595] --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.c b/window.c index 7cac4c03..10b456ab 100644 --- a/window.c +++ b/window.c @@ -4368,7 +4368,7 @@ static int get_fullscreen_rect(RECT * ss) ss->right = GetSystemMetrics(SM_CXSCREEN); ss->bottom = GetSystemMetrics(SM_CYSCREEN); */ - return GetClientRect(GetDesktopWindow(), &ss); + return GetClientRect(GetDesktopWindow(), ss); #endif }