Fix anti-aliasing crash and a Zak crash. Note there are still AA

artifacts left on screen. Anyone want to fix this? :)

svn-id: r3909
This commit is contained in:
James Brown 2002-04-11 20:10:47 +00:00
parent 7696081c54
commit 6e508eed29
3 changed files with 6 additions and 4 deletions

View file

@ -485,7 +485,7 @@ void updateScreen2xSaI(Scumm *s)
SDL_Rect *dr;
int i;
for (i = 0; i <= numDirtyRects; i++) {
for (i = 0; i < numDirtyRects; i++) {
dr = &dirtyRects[i];
Draw2xSaI(dr, s->_videoMode);
}