mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
Fix warnings related to parentheses
This commit is contained in:
parent
32f8f40a4a
commit
be521ff0ab
9 changed files with 21 additions and 21 deletions
|
@ -1347,7 +1347,7 @@ void Emulator::Load(const std::string& title_id, bool add_only, bool force_globa
|
|||
elf_file.open(decrypted_path);
|
||||
}
|
||||
// Decrypt SELF
|
||||
else if (elf_file = decrypt_self(std::move(elf_file), klic.empty() ? nullptr : klic.data()))
|
||||
else if ((elf_file = decrypt_self(std::move(elf_file), klic.empty() ? nullptr : klic.data())))
|
||||
{
|
||||
if (true)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue