mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-08 18:09:45 +01:00
Merge pull request #682 from InfoTeddy/general-bug-fixes-4
Add finalmode check to drawfinalmap call
This commit is contained in:
commit
d749e7e6e8
1 changed files with 1 additions and 1 deletions
|
@ -1560,7 +1560,7 @@ void gamerender(void)
|
||||||
{
|
{
|
||||||
ClearSurface(graphics.backBuffer);
|
ClearSurface(graphics.backBuffer);
|
||||||
}
|
}
|
||||||
if (map.final_colormode)
|
if ((map.finalmode || map.custommode) && map.final_colormode)
|
||||||
{
|
{
|
||||||
graphics.drawfinalmap();
|
graphics.drawfinalmap();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue