From 7bb3dc44d8d2007437b0899cb35f737f645f5ecd Mon Sep 17 00:00:00 2001 From: cathery Date: Wed, 4 Dec 2019 21:47:28 +0300 Subject: [PATCH] Fix improper thread exit name --- source/mainLoop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/mainLoop.cpp b/source/mainLoop.cpp index f53b43c..5bf983d 100644 --- a/source/mainLoop.cpp +++ b/source/mainLoop.cpp @@ -375,11 +375,11 @@ Result mainLoop() pscPmModuleFinalize(&pscModule); pscPmModuleClose(&pscModule); eventClose(&pscModule.event); - pscThread.Close(); + pscThread.Exit(); WriteToLog("Destroying events"); CloseEvents(); - eventThread.Close(); + eventThread.Exit(); WriteToLog("Clearing interfaces"); controllerInterfaces.clear();