Skip to content

Commit

Permalink
Build Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TryTwo committed May 14, 2024
1 parent d6ef52d commit e326228
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt/Debugger/BreakpointWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ void BreakpointWidget::EditMBP(u32 address, int edit, std::optional<QString> str
mbp.is_break_on_write =
edit == WRITE_COLUMN ? !old_mbp->is_break_on_write : old_mbp->is_break_on_write;

if (edit == ADDRESS_COLUMN || edit == END_ADDRESS_COLUMN && string.has_value())
if ((edit == ADDRESS_COLUMN || edit == END_ADDRESS_COLUMN) && string.has_value())
{
bool ok;
const u32 new_address = string.value().toUInt(&ok, 16);
Expand Down
1 change: 1 addition & 0 deletions Source/Core/DolphinQt/Debugger/BreakpointWidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class QAction;
class QCloseEvent;
class QShowEvent;
class QTableWidget;
class QTableWidgetItem;
class QToolBar;
namespace Core
{
Expand Down

0 comments on commit e326228

Please sign in to comment.