1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-16 09:38:29 +02:00

Merge pull request #92 from InfoTeddy/general-bug-fixes

Don't render "[Press ENTER to return to editor]" if "- Press ACTION to advance text -" is also being rendered
This commit is contained in:
Terry Cavanagh 2020-01-17 14:18:47 +01:00 committed by GitHub
commit 4fb9bfbd7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 //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);
} }