more fixes

svn-id: r4888
This commit is contained in:
Paweł Kołodziejski 2002-08-31 18:57:08 +00:00
parent bb71d9e677
commit c1cbba1d65
2 changed files with 4 additions and 4 deletions

View file

@ -244,8 +244,8 @@ void blit(byte *dst, byte *src, int w, int h)
do {
memcpy(dst, src, w);
dst += 320;
src += 320;
dst += _vm->_realWidth;
src += _vm->_realWidth;
} while (--h);
}