Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix extract zip writing lowercase files (#8221)
  • Loading branch information
rubenwardy authored and paramat committed Feb 14, 2019
1 parent eb5ac72 commit a8311ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/lua_api/l_mainmenu.cpp
Expand Up @@ -761,7 +761,7 @@ int ModApiMainMenu::l_extract_zip(lua_State *L)

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

if (!fs->addFileArchive(zipfile,true,false,io::EFAT_ZIP)) {
if (!fs->addFileArchive(zipfile, false, false, io::EFAT_ZIP)) {
lua_pushboolean(L,false);
return 1;
}
Expand Down

0 comments on commit a8311ad

Please sign in to comment.