Ver Fonte

Fixed check for ios target support in ted2.

Mark Sibly há 9 anos atrás
pai
commit
2fe43fc0d8
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      src/ted2/mx2ccenv.monkey2

+ 2 - 2
src/ted2/mx2ccenv.monkey2

@@ -91,9 +91,9 @@ Function EnumValidTargets:StringStack( console:Console )
 	targets.Push( "desktop" )
 	targets.Push( "emscripten" )
 	targets.Push( "android" )
-#if __TARGET__="ios"	
+#If __TARGET__="macos"
 	targets.Push( "ios" )
-#endif
+#Endif
 
 	Return targets