From bea41772229f5e23da12073599e33cc5f2eb9337 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 18 Jul 2006 03:57:31 +0000 Subject: [PATCH] Remove unneeded assert. --- stepmania/src/arch/Threads/Threads_Pthreads.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/stepmania/src/arch/Threads/Threads_Pthreads.cpp b/stepmania/src/arch/Threads/Threads_Pthreads.cpp index 20ba240fe3..a642b33e6f 100644 --- a/stepmania/src/arch/Threads/Threads_Pthreads.cpp +++ b/stepmania/src/arch/Threads/Threads_Pthreads.cpp @@ -342,7 +342,6 @@ bool EventImpl_Pthreads::Wait( RageTimer *pTimeout ) } int iRet = pthread_cond_timedwait( &m_Cond, &m_pParent->mutex, &abstime ); - ASSERT( iRet != EINVAL ); return iRet != ETIMEDOUT; } #else