Fixed dumb typo bug in recently-modified canvas/screen update code.

This commit is contained in:
William Kendrick 2010-02-25 21:46:14 +00:00
parent 7b31b7549d
commit b0d141fed3

View file

@ -906,7 +906,7 @@ static void update_canvas_ex(int x1, int y1, int x2, int y2, int screen_too)
/* Update the screen with the new canvas: */
static void update_canvas(int x1, int y1, int x2, int y2)
{
update_canvas_ex(x1, y1, x2, y1, 1);
update_canvas_ex(x1, y1, x2, y2, 1);
}