summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp
diff options
context:
space:
mode:
authorOatmealDome <OatmealDome@users.noreply.github.com>2024-06-26 18:40:56 -0400
committerGitHub <noreply@github.com>2024-06-26 18:40:56 -0400
commit134c079ad2558a5ef9bad404903c51d84526a51c (patch)
tree6b7cfcbf4ad79b125db6aa96c83a7d022b514c34 /Source/Core/DolphinQt/Debugger/ThreadWidget.cpp
parent3dbaf38eae8415f6ed8420ab36b49358c39cf3eb (diff)
parentbc67fc97c39628c76a4dbca411b0e8a9bfaf726a (diff)
Merge pull request #12893 from JosJuice/revert-audit-get-state
Revert "Audit uses of IsRunning and GetState"
Diffstat (limited to 'Source/Core/DolphinQt/Debugger/ThreadWidget.cpp')
-rw-r--r--Source/Core/DolphinQt/Debugger/ThreadWidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp
index 55704e31ad..e48097d0e4 100644
--- a/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp
+++ b/Source/Core/DolphinQt/Debugger/ThreadWidget.cpp
@@ -258,7 +258,7 @@ void ThreadWidget::Update()
auto& system = Core::System::GetInstance();
const auto emu_state = Core::GetState(system);
- if (emu_state == Core::State::Stopping || emu_state == Core::State::Uninitialized)
+ if (emu_state == Core::State::Stopping)
{
m_thread_table->setRowCount(0);
UpdateThreadContext({});