mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Remove remnant of 'active' if-conditional
This commit removes that 'if (true)' and unindents everything in drawgui() by one level.
This commit is contained in:
parent
bc0d22eec6
commit
2ec1080b3d
1 changed files with 113 additions and 116 deletions
|
@ -580,8 +580,6 @@ void Graphics::drawgui()
|
|||
{
|
||||
//This routine also updates the textboxs
|
||||
textbox[i].update();
|
||||
if (true) //FIXME: remove this later (no more 'active')
|
||||
{
|
||||
if (textbox[i].tm == 2 && textbox[i].tl <= 0.5)
|
||||
{
|
||||
textbox.erase(textbox.begin() + i);
|
||||
|
@ -721,7 +719,6 @@ void Graphics::drawgui()
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void Graphics::drawimagecol( int t, int xp, int yp, int r = 0, int g = 0, int b = 0, bool cent/*= false*/ )
|
||||
|
|
Loading…
Reference in a new issue