aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/gfx.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2013-01-02 19:28:25 +0100
committerTorbjörn Andersson2013-01-02 19:31:05 +0100
commitf4514069f33ba6a0ec72756a1aa3b2ae7b9ff6d1 (patch)
tree67b50cadd20ce503ce3420c1eabb5404df96a841 /engines/scumm/gfx.cpp
parent840633c5085e794d9323d947440fec6d39dcf79f (diff)
downloadscummvm-rg350-f4514069f33ba6a0ec72756a1aa3b2ae7b9ff6d1.tar.gz
scummvm-rg350-f4514069f33ba6a0ec72756a1aa3b2ae7b9ff6d1.tar.bz2
scummvm-rg350-f4514069f33ba6a0ec72756a1aa3b2ae7b9ff6d1.zip
JANITORIAL: Fix or silence a couple of Clang analyzer warnings
Clang will produce plenty of warnings (most of them seem to be of the "if the stars align the wrong way, this may happen" variety), but I don't have the time or patience to look at all of them.
Diffstat (limited to 'engines/scumm/gfx.cpp')
-rw-r--r--engines/scumm/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/gfx.cpp b/engines/scumm/gfx.cpp
index ffff329036..50ff0b3988 100644
--- a/engines/scumm/gfx.cpp
+++ b/engines/scumm/gfx.cpp
@@ -3609,7 +3609,7 @@ void Gdi::unkDecode9(byte *dst, int dstPitch, const byte *src, int height) const
int i;
uint buffer = 0, mask = 128;
int h = height;
- i = run = 0;
+ run = 0;
int x = 8;
for (;;) {