GSdx GSDevice11: Fix unsigned warning under VS2015 with DEBUG build enabled.

This commit is contained in:
Alessandro Vetere 2017-08-04 19:41:16 +02:00 committed by Gregory Hainaut
parent 8fe8cad8f9
commit 798d6a9134
1 changed files with 1 additions and 1 deletions

View File

@ -454,7 +454,7 @@ void GSDevice11::DrawIndexedPrimitive()
void GSDevice11::DrawIndexedPrimitive(int offset, int count)
{
ASSERT(offset + count <= m_index.count);
ASSERT(offset + count <= (int)m_index.count);
m_ctx->DrawIndexed(count, m_index.start + offset, m_vertex.start);
}