fix build warning

This commit is contained in:
Richard Goedeken 2015-04-26 12:29:40 -07:00
parent decc667427
commit b78b806c3a

View file

@ -1187,7 +1187,7 @@ namespace OGLFT
GLubyte* inverse = new GLubyte[ bitmap.rows * width ];
GLubyte* inverse_ptr = inverse;
for(int r=0; r<bitmap.rows; r++)
for(unsigned int r=0; r<bitmap.rows; r++)
{
GLubyte* bitmap_ptr = &bitmap.buffer[bitmap.pitch * (bitmap.rows - r - 1)];