Completely remove Graphics::bigbprint, bigrprint and bigbrprint

I migrated all of them to font::print, so they can now be removed.
Six deprecated print functions left! (Of which some are used a whole
lot, it's simpler if the lesser-used ones are gone first.)
This commit is contained in:
Dav999-v
2023-01-17 05:19:17 +01:00
committed by Misa Elizabeth Kai
parent c82e1f2902
commit 9749858365
3 changed files with 9 additions and 44 deletions

View File

@@ -383,16 +383,6 @@ void Graphics::bigprint( int x, int y, const std::string& text, int r, int g, i
font::print(PR_scX, x, y, text, r, g, b);
}
void Graphics::bigbprint(int x, int y, const std::string& text, int r, int g, int b, bool cen, int sc)
{
// DEPRECATED. Also, use PR_2X/PR_3X/etc directly
int PR_scX = (sc-1);
if (cen)
font::print(PR_scX | PR_CEN | PR_BOR, -1, y, text, r, g, b);
else
font::print(PR_scX | PR_BOR, x, y, text, r, g, b);
}
void Graphics::bprint( int x, int y, const std::string& text, int r, int g, int b, bool cen /*= false*/ ) {
// DEPRECATED
if (cen)
@@ -3288,26 +3278,6 @@ void Graphics::renderfixedpost(void)
}
}
void Graphics::bigrprint(int x, int y, const std::string& text, int r, int g, int b, bool cen, int sc)
{
// DEPRECATED. Also, use PR_2X/PR_3X/etc directly
int PR_scX = (sc-1);
if (cen)
font::print(PR_scX | PR_CEN, -1, y, text, r, g, b);
else
font::print(PR_scX | PR_RIGHT, x, y, text, r, g, b);
}
void Graphics::bigbrprint(int x, int y, const std::string& text, int r, int g, int b, bool cen, int sc)
{
// DEPRECATED. Also, use PR_2X/PR_3X/etc directly
int PR_scX = (sc-1);
if (cen)
font::print(PR_scX | PR_CEN | PR_BOR, -1, y, text, r, g, b);
else
font::print(PR_scX | PR_RIGHT | PR_BOR, x, y, text, r, g, b);
}
void Graphics::drawtele(int x, int y, int t, const SDL_Color color)
{
SDL_Rect telerect;