Fix delayed rendering of cursor with farlook in NetHackW.

This commit is contained in:
Bart House
2021-01-19 19:09:40 -08:00
parent 891b8e3913
commit 2b91931207

View File

@@ -1010,7 +1010,7 @@ static void dirty(PNHMapWindow data, int x, int y)
data->mapDirty[x][y] = TRUE;
RECT rt;
nhcoord2display(data, data->xCur, data->yCur, &rt);
nhcoord2display(data, x, y, &rt);
InvalidateRect(data->hWnd, &rt, FALSE);
}