From 89d923bc093eb5b78e2a60fc4cba36adc2d76926 Mon Sep 17 00:00:00 2001 From: Nav Date: Fri, 26 May 2023 00:23:12 +0100 Subject: [PATCH] Tidying --- src/Application.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Application.cpp b/src/Application.cpp index c9184ede..7e23feeb 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -444,8 +444,8 @@ namespace Bloom return; } - const auto targetControllerState = this->targetController->getThreadState(); - if (targetControllerState == ThreadState::STARTING || targetControllerState == ThreadState::READY) { + const auto tcThreadState = this->targetController->getThreadState(); + if (tcThreadState == ThreadState::STARTING || tcThreadState == ThreadState::READY) { EventManager::triggerEvent(std::make_shared()); this->applicationEventListener->waitForEvent( std::chrono::milliseconds(10000)