Fix warnings related to parentheses

This commit is contained in:
JohnHolmesII 2019-04-05 23:15:04 -07:00
parent 32f8f40a4a
commit be521ff0ab
9 changed files with 21 additions and 21 deletions

View file

@ -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)
{