From f409b5bc8579120c52ee4d203295d7c4d39fe735 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Wed, 13 Aug 2014 10:42:15 -0700 Subject: [PATCH] Fix FONT type --- templates/haxe/ApplicationMain.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/haxe/ApplicationMain.hx b/templates/haxe/ApplicationMain.hx index 3fa320935..ed657fd99 100644 --- a/templates/haxe/ApplicationMain.hx +++ b/templates/haxe/ApplicationMain.hx @@ -26,6 +26,7 @@ class ApplicationMain { ::if (type == "image")::types.push (AssetType.IMAGE); ::elseif (type == "binary")::types.push (AssetType.BINARY); ::elseif (type == "text")::types.push (AssetType.TEXT); + ::elseif (type == "font")::types.push (AssetType.FONT); ::elseif (type == "sound")::types.push (AssetType.SOUND); ::elseif (type == "music")::types.push (AssetType.MUSIC); ::else::types.push (null);::end::