fixed wring pkg files twice

This commit is contained in:
georgemoralis 2023-02-28 18:11:14 +02:00
parent bef8a63996
commit 2ef7f6fdc3
1 changed files with 7 additions and 5 deletions

View File

@ -87,11 +87,13 @@ bool PKG::extract(const std::string& filepath, const std::string& extractPath, s
out.Close(); out.Close();
} }
//found an name use it else
FsFile out; {
out.Open(extractPath + name, fsWrite); FsFile out;
out.Write(pkg + entry.offset, entry.size); out.Open(extractPath + name, fsWrite);
out.Close(); out.Write(pkg + entry.offset, entry.size);
out.Close();
}
} }
else else
{ {