aboutsummaryrefslogtreecommitdiff
path: root/simon/debug.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-06 13:22:48 +0000
committerTravis Howell2005-05-06 13:22:48 +0000
commit3cbaf48932bab13af946d23078b64a8f84d49559 (patch)
tree4f2ab5cff7ab00f38e568485db370f3ca9850fd9 /simon/debug.cpp
parent83d81666962ae879e969ae2879f1a3bdd0dd6307 (diff)
downloadscummvm-rg350-3cbaf48932bab13af946d23078b64a8f84d49559.tar.gz
scummvm-rg350-3cbaf48932bab13af946d23078b64a8f84d49559.tar.bz2
scummvm-rg350-3cbaf48932bab13af946d23078b64a8f84d49559.zip
Cleanup
svn-id: r17934
Diffstat (limited to 'simon/debug.cpp')
-rw-r--r--simon/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/debug.cpp b/simon/debug.cpp
index 85d61fede6..b8a274dacc 100644
--- a/simon/debug.cpp
+++ b/simon/debug.cpp
@@ -338,7 +338,7 @@ static void dump_bitmap(const char *filename, const byte *offs, int w, int h, in
state.y_skip = 0;
for (i = 0; i != w; i += 2) {
- byte *c = vc_10_depack_column(&state);
+ byte *c = vc10_depack_column(&state);
for (j = 0; j != h; j++) {
byte pix = c[j];
b[j * w + i] = (pix >> 4) | base;