Drop assert about event stack underflowing

This commit is contained in:
baldurk
2015-07-11 23:54:25 +02:00
parent 943ed67149
commit dd70744117
-1
View File
@@ -3919,7 +3919,6 @@ void WrappedOpenGL::ContextProcessChunk(uint64_t offset, GLChunkType chunk, bool
else if(context->m_State == READING && chunk == END_EVENT)
{
// refuse to pop off further than the root drawcall (mismatched begin/end events e.g.)
RDCASSERT(context->m_DrawcallStack.size() > 1);
if(context->m_DrawcallStack.size() > 1)
context->m_DrawcallStack.pop_back();
}