Fix compiler warning of different signedness

This commit is contained in:
Lars Toenning 2020-06-15 21:07:29 +02:00 committed by James Turner
parent 60dcf00f2b
commit b4d5374fb7

View File

@ -850,7 +850,7 @@ namespace canvas
void fillRow(GLubyte* row, GLuint pixel, GLuint width, GLuint pixelBytes)
{
GLubyte* dst = row;
for (int x = 0; x < width; ++x) {
for (GLuint x = 0; x < width; ++x) {
memcpy(dst, &pixel, pixelBytes);
dst += pixelBytes;
}