From bcf2c6b9b9afc9df438eb9e13eb09e1854e104f1 Mon Sep 17 00:00:00 2001 From: Pokechu22 Date: Thu, 22 Jul 2021 17:39:33 -0700 Subject: [PATCH] MemoryViewWidget: Remove unnecessary column This column would end up containing junk data after changing the data type. --- Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp index 112bebb0a7..568ce0b544 100644 --- a/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp +++ b/Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp @@ -68,7 +68,7 @@ void MemoryViewWidget::Update() { clearSelection(); - setColumnCount(3 + GetColumnCount(m_type)); + setColumnCount(2 + GetColumnCount(m_type)); if (rowCount() == 0) setRowCount(1);