1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-12 18:13:50 -05:00

Fix bug in the alternative code for -DNO_MULTIMON (was breaking

Cygwin build).

[originally from svn r1595]
This commit is contained in:
Simon Tatham 2002-03-20 22:16:00 +00:00
parent d6c766a279
commit 9157417fea

View File

@ -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
}