1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-26 06:28:30 +02:00

Remove graphics.drawgui() from maprender()

Since this is at the start of maprender(), the text boxes drawn by this
function will get hidden behind everything else being drawn on top of
it. Thus, it'll only result in a glitchy rendering where the text boxes
at the very top of the screen will be rendered in the roomname space of
the map screen.

To fix this rendering glitch, just remove the drawgui(). It's useless
anyway since it's being drawn behind everything else, so no need to have
it here.
This commit is contained in:
Misa 2020-05-14 11:03:04 -07:00 committed by Ethan Lee
parent be2d2e1e2a
commit 610768658e

View File

@ -1666,8 +1666,6 @@ void gamerender()
void maprender()
{
graphics.drawgui();
//draw screen alliteration
//Roomname:
int temp = map.area(game.roomx, game.roomy);