diff --git a/pcsx2-qt/Debugger/MemoryViewWidget.cpp b/pcsx2-qt/Debugger/MemoryViewWidget.cpp index 4e6cc5a5c8..6200dceb17 100644 --- a/pcsx2-qt/Debugger/MemoryViewWidget.cpp +++ b/pcsx2-qt/Debugger/MemoryViewWidget.cpp @@ -377,7 +377,11 @@ void MemoryViewWidget::customMenuRequested(QPoint pos) { m_contextMenu = new QMenu(this); - QAction* action = new QAction(tr("Go to in disassembly")); + QAction* action = new QAction(tr("Copy Address")); + m_contextMenu->addAction(action); + connect(action, &QAction::triggered, this, [this]() { QApplication::clipboard()->setText(QString::number(m_table.selectedAddress, 16).toUpper()); }); + + action = new QAction(tr("Go to in disassembly")); m_contextMenu->addAction(action); connect(action, &QAction::triggered, this, [this]() { emit gotoInDisasm(m_table.selectedAddress); });