mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +03: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:
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user