mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Remove unused function Graphics::textboxmove()
This function was marked as unused by cppcheck.
This commit is contained in:
parent
ca904a4d7c
commit
54ff36da97
2 changed files with 0 additions and 14 deletions
|
@ -2836,18 +2836,6 @@ int Graphics::textboxwidth()
|
||||||
return textbox[m].w;
|
return textbox[m].w;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Graphics::textboxmove(int xo, int yo)
|
|
||||||
{
|
|
||||||
if (!INBOUNDS_VEC(m, textbox))
|
|
||||||
{
|
|
||||||
puts("textboxmove() out-of-bounds!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
textbox[m].xp += xo;
|
|
||||||
textbox[m].yp += yo;
|
|
||||||
}
|
|
||||||
|
|
||||||
void Graphics::textboxmoveto(int xo)
|
void Graphics::textboxmoveto(int xo)
|
||||||
{
|
{
|
||||||
if (!INBOUNDS_VEC(m, textbox))
|
if (!INBOUNDS_VEC(m, textbox))
|
||||||
|
|
|
@ -53,8 +53,6 @@ public:
|
||||||
|
|
||||||
int textboxwidth();
|
int textboxwidth();
|
||||||
|
|
||||||
void textboxmove(int xo, int yo);
|
|
||||||
|
|
||||||
void textboxmoveto(int xo);
|
void textboxmoveto(int xo);
|
||||||
|
|
||||||
void textboxcentery();
|
void textboxcentery();
|
||||||
|
|
Loading…
Reference in a new issue