diff options
author | BLooperZ | 2019-08-02 18:29:04 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-18 02:02:14 +0100 |
commit | b6ff8f77b70bb8243114c384126d96331c98b3fc (patch) | |
tree | f3e02f39dc73ca41922aaef15c2919cee79869b4 /engines | |
parent | 83285746b0cbaa7223592fa008af22b31484e0d6 (diff) | |
download | scummvm-rg350-b6ff8f77b70bb8243114c384126d96331c98b3fc.tar.gz scummvm-rg350-b6ff8f77b70bb8243114c384126d96331c98b3fc.tar.bz2 scummvm-rg350-b6ff8f77b70bb8243114c384126d96331c98b3fc.zip |
fix always true condition
Diffstat (limited to 'engines')
-rw-r--r-- | engines/toon/movie.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/toon/movie.cpp b/engines/toon/movie.cpp index 634135d813..f646eb27f0 100644 --- a/engines/toon/movie.cpp +++ b/engines/toon/movie.cpp @@ -124,7 +124,7 @@ void Movie::playVideo(bool isFirstIntroVideo) { int len = frame->w * frame->h; byte pixels[310000] = {0}; memcpy(pixels, frame->getPixels(), len); - for (byte i = 1; i < 256; i++) + for (int i = 1; i < 256; i++) { int j; for (j = 0; j < len; j++) { |