From f3a4e1146fe3849088a4f656d862f8897d41f8d4 Mon Sep 17 00:00:00 2001 From: sephiroth99 Date: Tue, 22 Sep 2015 03:01:37 -0400 Subject: [PATCH] Fix logical-op parenthesis error from clang. --- src/xenia/emulator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/emulator.cc b/src/xenia/emulator.cc index d47c483fe..ec87e9ea4 100644 --- a/src/xenia/emulator.cc +++ b/src/xenia/emulator.cc @@ -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;