瀏覽代碼

Merge pull request #427 from engor/develop

Fixed recursive function call.
Mark Sibly 7 年之前
父節點
當前提交
a93d05750b
共有 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