mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
multi pkg fix
This commit is contained in:
parent
34cf1ff7c7
commit
cde29aba64
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ bool pkg_install(const fs::file& pkg_f, const std::string& dir, atomic_t<double>
|
||||||
u64 cursize = pkg_f.size();
|
u64 cursize = pkg_f.size();
|
||||||
while (cursize != header.pkg_size)
|
while (cursize != header.pkg_size)
|
||||||
{
|
{
|
||||||
std::string archive_filename = fmt::format("%s_%2d.pkg", name_wo_number, filelist.size());
|
std::string archive_filename = fmt::format("%s_%02d.pkg", name_wo_number, filelist.size());
|
||||||
|
|
||||||
fs::file archive_file(archive_filename);
|
fs::file archive_file(archive_filename);
|
||||||
if (!archive_file)
|
if (!archive_file)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue