Changeset - r21226:cdc0ff0de844
[Not reviewed]
master
0 1 0
frosch - 11 years ago 2014-02-06 22:24:02
frosch@openttd.org
(svn r26314) -Fix [FS#5899]: The giant-screenshot confirmation window only triggered for rediculously big screenshots, for ludicrously big ones.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
src/toolbar_gui.cpp
Show inline comments
 
@@ -1064,14 +1064,14 @@ static void MenuClickLargeWorldScreensho
 
{
 
	ViewPort vp;
 
	SetupScreenshotViewport(t, &vp);
 
	if (vp.width * vp.height > 8192 * 8192) {
 
	if ((uint64)vp.width * (uint64)vp.height > 8192 * 8192) {
 
		/* Ask for confirmation */
 
		SetDParam(0, vp.width);
 
		SetDParam(1, vp.height);
 
		_confirmed_screenshot_type = t;
 
		ShowQuery(STR_WARNING_SCREENSHOT_SIZE_CAPTION, STR_WARNING_SCREENSHOT_SIZE_MESSAGE, NULL, ScreenshotConfirmCallback);
 
	} else {
 
		/* Less than 4M pixels, just do it */
 
		/* Less than 64M pixels, just do it */
 
		MakeScreenshot(t, NULL);
 
	}
 
}
0 comments (0 inline, 0 general)