diff options
author | Paweł Kołodziejski | 2006-05-24 10:37:45 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2006-05-24 10:37:45 +0000 |
commit | 1ec169ad3a14533662a74f992d95e0b820623ad5 (patch) | |
tree | d144367930764cfa522c6a5b7656419e9b2fc476 | |
parent | efe96a535b0e74f47920e72958ab4ec5449fc35b (diff) | |
download | scummvm-rg350-1ec169ad3a14533662a74f992d95e0b820623ad5.tar.gz scummvm-rg350-1ec169ad3a14533662a74f992d95e0b820623ad5.tar.bz2 scummvm-rg350-1ec169ad3a14533662a74f992d95e0b820623ad5.zip |
ops
svn-id: r22604
-rw-r--r-- | engines/agi/graphics.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/graphics.cpp b/engines/agi/graphics.cpp index 3a73b48b38..d7ec377517 100644 --- a/engines/agi/graphics.cpp +++ b/engines/agi/graphics.cpp @@ -160,7 +160,7 @@ static void put_pixels(const int x, const int y, const int w, uint8 *p) { *b++ = *c ? *c : *p + 16; } - memcpy(screen + x + y * 320, p, w); + memcpy(screen + x + y * 320, _b, w); } static void init_console() { |