Add missing parens.

This commit is contained in:
riccardom 2009-10-31 16:58:25 +00:00
parent cf77d4398b
commit ffb0c189e4
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ bool CommandLine::validate()
return false;
}
if(_bios_arm9 && !_bios_arm7 || _bios_arm7 && !_bios_arm9) {
if((_bios_arm9 && !_bios_arm7) || (_bios_arm7 && !_bios_arm9)) {
g_printerr("If either bios-arm7 or bios-arm9 are specified, both must be.\n");
return false;
}