1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 05:58:30 +02: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:
Info Teddy 2020-01-16 23:33:12 -08:00
parent 2aa4aa5f8a
commit a6d427501c

View File

@ -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
dwgfx.bprint(5, 5, "[Press ENTER to return to editor]", 220 - (help.glow), 220 - (help.glow), 255 - (help.glow / 2), false);
}