ACCESS: Fix graphic glitch when scrolling up

This commit is contained in:
Paul Gilbert 2014-08-23 14:47:06 -04:00
parent 148eb972ab
commit ec70f3feaf

View File

@ -719,7 +719,7 @@ scrollUp:
// Scroll up
if (scrollUp()) {
_scrollEnd = 4;
_vm->_screen->_scrollY = TILE_HEIGHT;
_vm->_screen->_scrollY &= TILE_HEIGHT;
_scrollFlag = true;
}
}