mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-07 07:21:25 +12:00
more fixes...
This commit is contained in:
parent
354cf24302
commit
d32025ae3c
2 changed files with 4 additions and 4 deletions
|
@ -188,7 +188,7 @@ int Unpack(wxFile& pkg_f, std::string src, std::string dst)
|
||||||
PKGHeader* m_header = (PKGHeader*) malloc (sizeof(PKGHeader));
|
PKGHeader* m_header = (PKGHeader*) malloc (sizeof(PKGHeader));
|
||||||
|
|
||||||
wxFile dec_pkg_f;
|
wxFile dec_pkg_f;
|
||||||
std::string decryptedFile = wxGetCwd() + "/dev_hdd1/" + src + ".dec";
|
std::string decryptedFile = wxGetCwd().ToStdString() + "/dev_hdd1/" + src + ".dec";
|
||||||
|
|
||||||
dec_pkg_f.Create(decryptedFile, true);
|
dec_pkg_f.Create(decryptedFile, true);
|
||||||
|
|
||||||
|
|
|
@ -525,7 +525,7 @@ bool SELFDecrypter::GetKeyFromRap(u8 *content_id, u8 *npdrm_key)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
ConLog.Write("Loading RAP file %s", ci_str + ".rap");
|
ConLog.Write("Loading RAP file %s", ci_str.wc_str() + wchar_t(".rap"));
|
||||||
rap_file.Read(rap_key, 0x10);
|
rap_file.Read(rap_key, 0x10);
|
||||||
rap_file.Close();
|
rap_file.Close();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue