mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 23:39:00 +00:00
Actual fix now xD
This commit is contained in:
parent
cf5dd6289e
commit
dd717b2d93
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ CSprite2d::AddToBuffer(const CRect &r, const CRGBA &c, float u0, float v0, float
|
|||
bool
|
||||
CSprite2d::IsVertexBufferFull()
|
||||
{
|
||||
return (nextBufferVertex > TEMPBUFFERINDEXSIZE-128-4 || nextBufferIndex > ARRAY_SIZE(TempBufferRenderIndexList)-6);
|
||||
return (nextBufferVertex > TEMPBUFFERVERTSIZE-128-4 || nextBufferIndex > ARRAY_SIZE(TempBufferRenderIndexList)-6);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue