[Scummvm-git-logs] scummvm master -> 7ed78826407d767d2cfdefbd2852108614477d02
digitall
noreply at scummvm.org
Sun Oct 15 18:13:40 UTC 2023
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:
7ed7882640 GRAPHICS: MACGUI: Fix Signed vs. Unsigned GCC Compiler Warning
Commit: 7ed78826407d767d2cfdefbd2852108614477d02
https://github.com/scummvm/scummvm/commit/7ed78826407d767d2cfdefbd2852108614477d02
Author: D G Turner (digitall at scummvm.org)
Date: 2023-10-15T19:13:07+01:00
Commit Message:
GRAPHICS: MACGUI: Fix Signed vs. Unsigned GCC Compiler Warning
Changed paths:
graphics/macgui/mactext.cpp
diff --git a/graphics/macgui/mactext.cpp b/graphics/macgui/mactext.cpp
index 0fc7f95e502..989073a8492 100644
--- a/graphics/macgui/mactext.cpp
+++ b/graphics/macgui/mactext.cpp
@@ -718,7 +718,7 @@ void MacText::splitString(const Common::U32String &str, int curLine) {
Common::U32String paragraph, tmp;
- if (curLine == -1 || curLine >= _canvas._text.size())
+ if (curLine == -1 || curLine >= (int)_canvas._text.size())
curLine = _canvas._text.size() - 1;
int curChunk = _canvas._text[curLine].chunks.size() - 1;
More information about the Scummvm-git-logs
mailing list