From 1cf689a6ad9d6c5cd29e11a6a96cb075eb2bbbb8 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 27 Mar 2022 22:11:07 +0200 Subject: Replaced ThreadSync with stl's mutex --- Stars45/CmpSelectDlg.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Stars45/CmpSelectDlg.h') diff --git a/Stars45/CmpSelectDlg.h b/Stars45/CmpSelectDlg.h index 7463aec..093e21d 100644 --- a/Stars45/CmpSelectDlg.h +++ b/Stars45/CmpSelectDlg.h @@ -14,6 +14,8 @@ #ifndef CmpSelectDlg_h #define CmpSelectDlg_h +#include + #include "Types.h" #include "FormWindow.h" #include "Bitmap.h" @@ -22,7 +24,6 @@ #include "ListBox.h" #include "Font.h" #include "Text.h" -#include "ThreadSync.h" // +--------------------------------------------------------------------+ @@ -76,7 +77,7 @@ protected: Campaign* campaign; int selected_mission; HANDLE hproc; - ThreadSync sync; + std::mutex sync; bool loading; bool loaded; Text load_file; -- cgit v1.1