Browse Source

Fixed recursive function call.

Evgeniy Goroshkin 7 years ago
parent
commit
48edd00aee
1 changed files with 1 additions and 1 deletions
  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