diff options
Diffstat (limited to 'engines/simon/debug.cpp')
-rw-r--r-- | engines/simon/debug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/simon/debug.cpp b/engines/simon/debug.cpp index 30a8b4cad7..49631b817c 100644 --- a/engines/simon/debug.cpp +++ b/engines/simon/debug.cpp @@ -348,7 +348,7 @@ void SimonEngine::dump_bitmap(const char *filename, const byte *offs, int w, int if (getGameType() == GType_FF) { for (i = 0; i != w; i++) { - byte *c = vc10_depack_column(&state); + byte *c = vc10_depackColumn(&state); for (j = 0; j != h; j++) { byte pix = c[j]; b[j * w + i] = pix; @@ -356,7 +356,7 @@ void SimonEngine::dump_bitmap(const char *filename, const byte *offs, int w, int } } else { for (i = 0; i != w; i += 2) { - byte *c = vc10_depack_column(&state); + byte *c = vc10_depackColumn(&state); for (j = 0; j != h; j++) { byte pix = c[j]; b[j * w + i] = (pix >> 4) | base; |