Fix compiler warning of different signedness

This commit is contained in:
Lars Toenning
2020-06-16 12:11:24 +01:00
committed by James Turner
parent 60dcf00f2b
commit b4d5374fb7
+1 -1
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;
}