mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-10 19:09:45 +01: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:
parent
905696c263
commit
4e3406d5aa
2 changed files with 0 additions and 7 deletions
|
@ -606,7 +606,6 @@ void Graphics::drawtowertile3( int x, int y, int t, int off )
|
||||||
|
|
||||||
void Graphics::drawgui()
|
void Graphics::drawgui()
|
||||||
{
|
{
|
||||||
textboxcleanup();
|
|
||||||
//Draw all the textboxes to the screen
|
//Draw all the textboxes to the screen
|
||||||
for (size_t i = 0; i<textbox.size(); i++)
|
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;
|
warprect.h = d;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Graphics::textboxcleanup()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void Graphics::textboxcenter()
|
void Graphics::textboxcenter()
|
||||||
{
|
{
|
||||||
textbox[m].centerx();
|
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 createtextbox(std::string t, int xp, int yp, int r= 255, int g= 255, int b = 255);
|
||||||
|
|
||||||
void textboxcleanup();
|
|
||||||
|
|
||||||
void textboxcenter();
|
void textboxcenter();
|
||||||
|
|
||||||
void textboxcenterx();
|
void textboxcenterx();
|
||||||
|
|
Loading…
Reference in a new issue