diff options
| author | Pokechu22 <Pokechu022@gmail.com> | 2021-07-22 17:39:33 -0700 |
|---|---|---|
| committer | Pokechu22 <Pokechu022@gmail.com> | 2021-07-22 17:39:35 -0700 |
| commit | bcf2c6b9b9afc9df438eb9e13eb09e1854e104f1 (patch) | |
| tree | 655bd69c88d78ebb59999d5d5775ea6238cb7fa6 /Source/Core | |
| parent | 5af56563833b54d5074808dd34af7e00a1b2dad9 (diff) | |
MemoryViewWidget: Remove unnecessary column
This column would end up containing junk data after changing the data type.
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/Debugger/MemoryViewWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
