Fix map loading background
Integrated interface bar area remained visible during map loading.
This commit is contained in:
parent
9976728e04
commit
07f3c82444
|
@ -828,7 +828,12 @@ static int mapLoad(File* stream)
|
||||||
|
|
||||||
int rc = 0;
|
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);
|
windowRefresh(gIsoWindow);
|
||||||
animationStop();
|
animationStop();
|
||||||
scriptsDisable();
|
scriptsDisable();
|
||||||
|
|
Loading…
Reference in New Issue