diff options
author | Johannes Schickel | 2015-12-12 06:46:06 +0100 |
---|---|---|
committer | Johannes Schickel | 2015-12-12 06:54:58 +0100 |
commit | 410b5f3d342e1e2e4b06c8c7ae219212d2e5426f (patch) | |
tree | 861e79df60b7df372dd3bb98baa23116c261a475 /devtools | |
parent | 2ef9ced7a9a8a2d95f0b017292cca37f681ef4ea (diff) | |
download | scummvm-rg350-410b5f3d342e1e2e4b06c8c7ae219212d2e5426f.tar.gz scummvm-rg350-410b5f3d342e1e2e4b06c8c7ae219212d2e5426f.tar.bz2 scummvm-rg350-410b5f3d342e1e2e4b06c8c7ae219212d2e5426f.zip |
DEVTOOLS: Silence compiler warning in convbdf.
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/convbdf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/convbdf.cpp b/devtools/convbdf.cpp index 21c8af8234..6852fc2f9a 100644 --- a/devtools/convbdf.cpp +++ b/devtools/convbdf.cpp @@ -392,7 +392,7 @@ int main(int argc, char *argv[]) { for (int y = 0; y < box.height; ++y) { printf("// |"); - unsigned char data; + unsigned char data = 0; for (int x = 0; x < box.width; ++x) { if (!(x % 8)) data = *bitmap++; |