Fix extract zip writing lowercase files (#8221)
This commit is contained in:
parent
12c282eefd
commit
cc13df9f3e
@ -836,7 +836,7 @@ int ModApiMainMenu::l_extract_zip(lua_State *L)
|
|||||||
|
|
||||||
io::IFileSystem* fs = engine->m_device->getFileSystem();
|
io::IFileSystem* fs = engine->m_device->getFileSystem();
|
||||||
|
|
||||||
if (!fs->addFileArchive(zipfile,true,false,io::EFAT_ZIP)) {
|
if (!fs->addFileArchive(zipfile, false, false, io::EFAT_ZIP)) {
|
||||||
lua_pushboolean(L,false);
|
lua_pushboolean(L,false);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user