Fixed DPI scaling issues with tilebuilder

This commit is contained in:
huwpascoe
2014-10-08 20:45:48 +01:00
parent 00dbf270a4
commit c3514e98eb

View File

@@ -50,7 +50,7 @@ namespace OpenRA.TilesetBuilder
return; return;
/* draw the background */ /* draw the background */
e.Graphics.DrawImageUnscaled(Image, 0, 0); e.Graphics.DrawImage(Image, 0, 0, Image.Width, Image.Height);
/* draw terrain type overlays */ /* draw terrain type overlays */
if (ShowTerrainTypes) if (ShowTerrainTypes)
{ {