TOLTECS: Fix spacing errors

This commit is contained in:
Strangerke 2013-11-24 18:08:39 +01:00
parent 552f2a52bd
commit 30441cc7c1
5 changed files with 13 additions and 13 deletions

View file

@ -156,7 +156,7 @@ void RenderQueue::update() {
byte *srcp = _vm->_screen->_backScreen + _vm->_cameraX + _vm->_cameraY * _vm->_sceneWidth;
int16 w = MIN<int16>(640, _vm->_sceneWidth);
int16 h = MIN<int16>(400, _vm->_cameraHeight);
while (h--) {
while (h--) {
memcpy(destp, srcp, w);
destp += 640;
srcp += _vm->_sceneWidth;