fixed wring pkg files twice
This commit is contained in:
parent
bef8a63996
commit
2ef7f6fdc3
|
@ -87,11 +87,13 @@ bool PKG::extract(const std::string& filepath, const std::string& extractPath, s
|
|||
out.Close();
|
||||
|
||||
}
|
||||
//found an name use it
|
||||
FsFile out;
|
||||
out.Open(extractPath + name, fsWrite);
|
||||
out.Write(pkg + entry.offset, entry.size);
|
||||
out.Close();
|
||||
else
|
||||
{
|
||||
FsFile out;
|
||||
out.Open(extractPath + name, fsWrite);
|
||||
out.Write(pkg + entry.offset, entry.size);
|
||||
out.Close();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue