소스 검색

Fixed recursive function call.

Evgeniy Goroshkin 7 년 전
부모
커밋
48edd00aee
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      modules/std/misc/zipfile.monkey2

+ 1 - 1
modules/std/misc/zipfile.monkey2

@@ -163,7 +163,7 @@ End
 #end
 Function ExtractZip:Bool( zipFile:String,dstDir:String )
 
-	Return ExtractZip( zipFile,dstDir )
+	Return ExtractZip( zipFile,dstDir,"" )
 End
 
 #rem monkeydoc @hidden