Remove unused function Graphics::textboxmove()

This function was marked as unused by cppcheck.
This commit is contained in:
Misa 2021-01-02 00:25:34 -08:00 committed by Ethan Lee
parent ca904a4d7c
commit 54ff36da97
2 changed files with 0 additions and 14 deletions

View File

@ -2836,18 +2836,6 @@ int Graphics::textboxwidth()
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)
{
if (!INBOUNDS_VEC(m, textbox))

View File

@ -53,8 +53,6 @@ public:
int textboxwidth();
void textboxmove(int xo, int yo);
void textboxmoveto(int xo);
void textboxcentery();