Fix logical-op parenthesis error from clang.

This commit is contained in:
sephiroth99 2015-09-22 03:01:37 -04:00 committed by Ben Vanik
parent 7fb4fd2790
commit f3a4e1146f
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ bool Emulator::ExceptionCallback(Exception* ex) {
auto code_end = code_base + code_cache->total_size();
if (!debugger() ||
!debugger()->is_attached() && debugging::IsDebuggerAttached()) {
(!debugger()->is_attached() && debugging::IsDebuggerAttached())) {
// If Xenia's debugger isn't attached but another one is, pass it to that
// debugger.
return false;