[Posix] Moar fixes

This commit is contained in:
Lynix 2020-02-23 11:29:54 +01:00
parent a51e77fe83
commit 6fd31d1c71
1 changed files with 2 additions and 2 deletions

View File

@ -237,10 +237,10 @@ namespace Nz
{ {
if (m_style & WindowStyle_Threaded) if (m_style & WindowStyle_Threaded)
{ {
if (m_thread.IsJoinable()) if (m_thread.joinable())
{ {
m_threadActive = false; m_threadActive = false;
m_thread.Join(); m_thread.join();
} }
} }