Change to fatal_assert()

This commit is contained in:
Vinnie Falco
2013-08-05 17:38:15 -07:00
parent c12d92f8ad
commit 8135c89683
3 changed files with 3 additions and 3 deletions

View File

@@ -40,7 +40,7 @@ Thread::~Thread()
To avoid this type of nastiness, always make sure you call stopThread() before or during
your subclass's destructor.
*/
fatal_require (! isThreadRunning());
fatal_assert (! isThreadRunning());
}
//==============================================================================