Fix map loading background

Integrated interface bar area remained visible during map loading.
This commit is contained in:
Alexander Batalov 2022-12-29 23:33:09 +03:00
parent 9976728e04
commit 07f3c82444

View File

@ -828,7 +828,12 @@ static int mapLoad(File* stream)
int rc = 0;
windowFill(gIsoWindow, 0, 0, _scr_size.right - _scr_size.left + 1, _scr_size.bottom - _scr_size.top - 99, _colorTable[0]);
windowFill(gIsoWindow,
0,
0,
windowGetWidth(gIsoWindow),
windowGetHeight(gIsoWindow),
_colorTable[0]);
windowRefresh(gIsoWindow);
animationStop();
scriptsDisable();