diff options
author | Max Horn | 2009-09-08 22:03:07 +0000 |
---|---|---|
committer | Max Horn | 2009-09-08 22:03:07 +0000 |
commit | 37e51f1575992b82a3c73536eb4bba7f9e96ed53 (patch) | |
tree | 0f7903a56e22ad14c6304135edc09bfb90a7269e /engines/groovie | |
parent | f1683ae5fef8358b374c1bfb316b25548538f8e0 (diff) | |
download | scummvm-rg350-37e51f1575992b82a3c73536eb4bba7f9e96ed53.tar.gz scummvm-rg350-37e51f1575992b82a3c73536eb4bba7f9e96ed53.tar.bz2 scummvm-rg350-37e51f1575992b82a3c73536eb4bba7f9e96ed53.zip |
Fixed some (pedantic) warnings
svn-id: r44015
Diffstat (limited to 'engines/groovie')
-rw-r--r-- | engines/groovie/cursor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/groovie/cursor.cpp b/engines/groovie/cursor.cpp index 6a91600dbb..65804a319c 100644 --- a/engines/groovie/cursor.cpp +++ b/engines/groovie/cursor.cpp @@ -297,7 +297,7 @@ void Cursor_v2::decodeFrame(byte *pal, byte *data, byte *dest) { byte ctrA = 0, ctrB = 0; - byte alpha, palIdx; + byte alpha = 0, palIdx = 0; byte r, g, b; |