mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2024-11-01 23:26:57 +00:00
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;
|
||||
|
||||
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();
|
||||
|
Loading…
Reference in New Issue
Block a user