Skip to content

Commit a8311ad

Browse files
rubenwardyparamat
authored andcommittedFeb 14, 2019
Fix extract zip writing lowercase files (#8221)
1 parent eb5ac72 commit a8311ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎src/script/lua_api/l_mainmenu.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -761,7 +761,7 @@ int ModApiMainMenu::l_extract_zip(lua_State *L)
761761

762762
io::IFileSystem *fs = RenderingEngine::get_filesystem();
763763

764-
if (!fs->addFileArchive(zipfile,true,false,io::EFAT_ZIP)) {
764+
if (!fs->addFileArchive(zipfile, false, false, io::EFAT_ZIP)) {
765765
lua_pushboolean(L,false);
766766
return 1;
767767
}

0 commit comments

Comments
 (0)
Please sign in to comment.