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

Remove useless function Graphics::textboxcleanup()

It was made useless after my refactor to remove the 'active' system from
text boxes.
This commit is contained in:
Misa 2020-04-28 18:19:33 -07:00 committed by Ethan Lee
parent 905696c263
commit 4e3406d5aa
2 changed files with 0 additions and 7 deletions

View File

@ -606,7 +606,6 @@ void Graphics::drawtowertile3( int x, int y, int t, int off )
void Graphics::drawgui()
{
textboxcleanup();
//Draw all the textboxes to the screen
for (size_t i = 0; i<textbox.size(); i++)
{
@ -2630,10 +2629,6 @@ void Graphics::setwarprect( int a, int b, int c, int d )
warprect.h = d;
}
void Graphics::textboxcleanup()
{
}
void Graphics::textboxcenter()
{
textbox[m].centerx();

View File

@ -55,8 +55,6 @@ public:
void createtextbox(std::string t, int xp, int yp, int r= 255, int g= 255, int b = 255);
void textboxcleanup();
void textboxcenter();
void textboxcenterx();