mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
Added a camera option
Also a couple minor optimizations
This commit is contained in:
parent
279ec3d8a3
commit
fcfdd1551b
4 changed files with 15 additions and 4 deletions
|
@ -171,7 +171,6 @@ void Emulator::Load()
|
|||
|
||||
if(IsSelf(m_path))
|
||||
{
|
||||
std::string self_path = m_path;
|
||||
std::string elf_path = rFileName(m_path).GetPath();
|
||||
|
||||
if (fmt::CmpNoCase(rFileName(m_path).GetFullName(),"EBOOT.BIN") == 0)
|
||||
|
@ -183,7 +182,7 @@ void Emulator::Load()
|
|||
elf_path += "/" + rFileName(m_path).GetName() + ".elf";
|
||||
}
|
||||
|
||||
if(!DecryptSelf(elf_path, self_path))
|
||||
if(!DecryptSelf(elf_path, m_path))
|
||||
return;
|
||||
|
||||
m_path = elf_path;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue