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

@@ -213,7 +213,6 @@ public:
void bprintalpha(int x, int y, const std::string& t, int r, int g, int b, int a, bool cen = false);
void bigprint( int _x, int _y, const std::string& _s, int r, int g, int b, bool cen = false, int sc = 2 );
void bigbprint(int x, int y, const std::string& s, int r, int g, int b, bool cen = false, int sc = 2);
void drawspritesetcol(int x, int y, int t, int c);
@@ -237,10 +236,6 @@ public:
void drawtrophytext(void);
void bigrprint(int x, int y, const std::string& t, int r, int g, int b, bool cen = false, int sc = 2);
void bigbrprint(int x, int y, const std::string& t, int r, int g, int b, bool cen = false, int sc = 2);
void drawtele(int x, int y, int t, SDL_Color c);
SDL_Color getRGBA(Uint8 r, Uint8 g, Uint8 b, Uint8 a);