[Scummvm-git-logs] scummvm master -> 6282cbb2157708773576080d4bfe539c30ab682b
digitall
noreply at scummvm.org
Sat Apr 16 16:05:16 UTC 2022
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:
6282cbb215 CHEWY: Fix Signed vs. Unsigned Compiler Warning
Commit: 6282cbb2157708773576080d4bfe539c30ab682b
https://github.com/scummvm/scummvm/commit/6282cbb2157708773576080d4bfe539c30ab682b
Author: D G Turner (digitall at scummvm.org)
Date: 2022-04-16T17:04:45+01:00
Commit Message:
CHEWY: Fix Signed vs. Unsigned Compiler Warning
Changed paths:
engines/chewy/atds.cpp
diff --git a/engines/chewy/atds.cpp b/engines/chewy/atds.cpp
index 142c3de0fdd..f9ede8a85a5 100644
--- a/engines/chewy/atds.cpp
+++ b/engines/chewy/atds.cpp
@@ -409,7 +409,7 @@ bool Atdsys::start_ats(int16 txtNr, int16 txtMode, int16 color, int16 mode, int1
}
_atsv.text.clear();
- for (int i = 0; i < textArray.size(); i++)
+ for (uint i = 0; i < textArray.size(); i++)
_atsv.text += textArray[i] + " ";
_atsv.text.deleteLastChar();
More information about the Scummvm-git-logs
mailing list