From 5416fa363ca41762ae8cb879ffe3221ad9add7b9 Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Tue, 13 Sep 2016 08:08:26 +1000 Subject: [PATCH] Launcher: quick fix for build bot --- Launcher2/Drawing/Drawer2DExt.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Launcher2/Drawing/Drawer2DExt.cs b/Launcher2/Drawing/Drawer2DExt.cs index 1c67a21c4..1d7f6905b 100644 --- a/Launcher2/Drawing/Drawer2DExt.cs +++ b/Launcher2/Drawing/Drawer2DExt.cs @@ -74,7 +74,7 @@ namespace Launcher { if( y < 0 ) { height += y; y = 0; } width = Math.Min( x + width, bmp.Width ) - x; - height = Math.Min( y + height, bmp.< 0 Height ) - y; + height = Math.Min( y + height, bmp.Height ) - y; return width > 0 && height > 0; }