[Scummvm-git-logs] scummvm master -> f96be8781cca998990e650bcfe4875c007d01f32
digitall
noreply at scummvm.org
Wed Jun 29 12:56:35 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:
f96be8781c CHEWY: Fix Signed vs. Unsigned GCC Compiler Warning
Commit: f96be8781cca998990e650bcfe4875c007d01f32
https://github.com/scummvm/scummvm/commit/f96be8781cca998990e650bcfe4875c007d01f32
Author: D G Turner (digitall at scummvm.org)
Date: 2022-06-29T13:56:08+01:00
Commit Message:
CHEWY: Fix Signed vs. Unsigned GCC Compiler Warning
Changed paths:
engines/chewy/dialogs/cinema.cpp
diff --git a/engines/chewy/dialogs/cinema.cpp b/engines/chewy/dialogs/cinema.cpp
index 324c392a3ef..8425ea3fb9e 100644
--- a/engines/chewy/dialogs/cinema.cpp
+++ b/engines/chewy/dialogs/cinema.cpp
@@ -68,7 +68,7 @@ void Cinema::execute() {
// Render cut-scene list
for (int i = 0; i < CINEMA_LINES; ++i) {
- if ((topIndex + i) >= cutscenes.size())
+ if ((topIndex + i) >= (int)cutscenes.size())
continue;
cutsceneName = _G(atds)->getTextEntry(98,
More information about the Scummvm-git-logs
mailing list