[Scummvm-git-logs] scummvm master -> 82c6ee7d645f28e55e758e016264571991d9092b

digitall 547637+digitall at users.noreply.github.com
Mon Jun 15 21:15:42 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
82c6ee7d64 GLK: COMPREHEND: Fix GCC Compiler Warning


Commit: 82c6ee7d645f28e55e758e016264571991d9092b
    https://github.com/scummvm/scummvm/commit/82c6ee7d645f28e55e758e016264571991d9092b
Author: D G Turner (digitall at scummvm.org)
Date: 2020-06-15T22:13:06+01:00

Commit Message:
GLK: COMPREHEND: Fix GCC Compiler Warning

Changed paths:
    engines/glk/comprehend/charset.cpp


diff --git a/engines/glk/comprehend/charset.cpp b/engines/glk/comprehend/charset.cpp
index d17cbef3f2..eb0790c4e8 100644
--- a/engines/glk/comprehend/charset.cpp
+++ b/engines/glk/comprehend/charset.cpp
@@ -47,7 +47,7 @@ void CharSet::drawChar(Graphics::Surface *dst, uint32 chr, int x, int y, uint32
 	assert(dst->format.bytesPerPixel == 4);
 	assert(chr >= 32 && chr < 128);
 
-	for (uint yp = 0; yp < 8; ++yp) {
+	for (int yp = 0; yp < 8; ++yp) {
 		if ((y + yp) < 0 || (y + yp) >= dst->h)
 			continue;
 




More information about the Scummvm-git-logs mailing list