Nicolas Cannasse 17 년 전
부모
커밋
1c439f9e86
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      genswf8.ml

+ 1 - 2
genswf8.ml

@@ -191,10 +191,9 @@ let unprotect a = !protect_all || a = "" || a = "_" || (a.[0] = '_' && a.[1] !=
 let rec is_protected_path path ext =
 	match path with
 	| ["flash"] , "Boot" | ["flash"] , "Lib" -> false
-	| ["flash"],"__FlashXml" -> true
 	| "flash" :: _ , _ | [] , "flash" -> ext
 	| [] , "Array" | [] , "Math" | [] , "Date" | [] , "String" | [] , "Bool" -> true
-	| [] , "Int" | [] , "Float" | [] , "Xml" -> true
+	| [] , "Int" | [] , "Float" -> true
 	| "_global" :: l , n -> is_protected_path (l,n) ext
 	| _ -> false