mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
Fix #2462
This commit is contained in:
parent
19a698682b
commit
9a9455a696
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ bool tar_object::extract(std::string path)
|
||||||
{
|
{
|
||||||
case '0':
|
case '0':
|
||||||
{
|
{
|
||||||
fs::file file(header.name, fs::rewrite);
|
fs::file file(path + header.name, fs::rewrite);
|
||||||
file.write(get_file(header.name).to_vector<u8>());
|
file.write(get_file(header.name).to_vector<u8>());
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue