mirror of https://github.com/PCSX2/pcsx2.git
GSdx GSDevice11: Fix unsigned warning under VS2015 with DEBUG build enabled.
This commit is contained in:
parent
8fe8cad8f9
commit
798d6a9134
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue