mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Don't render press ENTER to return to editor if advancetext is on
This prevents a visual clash that can happen if both are on and there are no cutscene bars.
This commit is contained in:
parent
2aa4aa5f8a
commit
a6d427501c
1 changed files with 1 additions and 1 deletions
|
@ -1558,7 +1558,7 @@ void gamerender(Graphics& dwgfx, mapclass& map, Game& game, entityclass& obj, Ut
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(map.custommode && !map.custommodeforreal){
|
if(map.custommode && !map.custommodeforreal && !game.advancetext){
|
||||||
//Return to level editor
|
//Return to level editor
|
||||||
dwgfx.bprint(5, 5, "[Press ENTER to return to editor]", 220 - (help.glow), 220 - (help.glow), 255 - (help.glow / 2), false);
|
dwgfx.bprint(5, 5, "[Press ENTER to return to editor]", 220 - (help.glow), 220 - (help.glow), 255 - (help.glow / 2), false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue