From 8e8c927cd3e7cfe347e469f47e2c17e93fc8bd76 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Wed, 15 Jul 2015 17:07:04 -0700 Subject: [PATCH] Compile fix --- lime/graphics/cairo/CairoImageSurface.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lime/graphics/cairo/CairoImageSurface.hx b/lime/graphics/cairo/CairoImageSurface.hx index 930791e1a..0f83305df 100644 --- a/lime/graphics/cairo/CairoImageSurface.hx +++ b/lime/graphics/cairo/CairoImageSurface.hx @@ -19,7 +19,7 @@ import lime.system.System; #if lime_cairo this = lime_cairo_image_surface_create (format, width, height); #else - this = 0; + this = cast 0; #end }