From 8bc81b78f0e27d757a6f0d3c8e287d7b4dae01bb Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Fri, 30 Oct 2015 13:57:22 -0700 Subject: [PATCH] Compile fix --- lime/_backend/html5/HTML5Window.hx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lime/_backend/html5/HTML5Window.hx b/lime/_backend/html5/HTML5Window.hx index 257c90846..a3a6d1d29 100644 --- a/lime/_backend/html5/HTML5Window.hx +++ b/lime/_backend/html5/HTML5Window.hx @@ -413,8 +413,8 @@ class HTML5Window { } - var windowWidth = setWidth; - var windowHeight = setHeight; + var windowWidth:Float = setWidth; + var windowHeight:Float = setHeight; if (windowWidth == 0 || windowHeight == 0) {