mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-16 12:03:03 -05:00
Fix bug in the alternative code for -DNO_MULTIMON (was breaking
Cygwin build). [originally from svn r1595]
This commit is contained in:
parent
d6c766a279
commit
9157417fea
2
window.c
2
window.c
@ -4368,7 +4368,7 @@ static int get_fullscreen_rect(RECT * ss)
|
|||||||
ss->right = GetSystemMetrics(SM_CXSCREEN);
|
ss->right = GetSystemMetrics(SM_CXSCREEN);
|
||||||
ss->bottom = GetSystemMetrics(SM_CYSCREEN);
|
ss->bottom = GetSystemMetrics(SM_CYSCREEN);
|
||||||
*/
|
*/
|
||||||
return GetClientRect(GetDesktopWindow(), &ss);
|
return GetClientRect(GetDesktopWindow(), ss);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user