Skip to content

Commit

Permalink
fix build warning
Browse files Browse the repository at this point in the history
  • Loading branch information
richard42 committed Apr 26, 2015
1 parent decc667 commit b78b806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osd/OGLFT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)];

Expand Down

0 comments on commit b78b806

Please sign in to comment.