Add Graphics::bigbprint()

It's just like bigprint() except it duplicates some of the calculations
because I didn't want to make a bigprintoff() function which would
duplicate even more code. I'm beginning to think these text printing
functions are completely horrible to work with...
This commit is contained in:
Misa
2021-03-19 14:26:59 -07:00
parent 827b3e430b
commit f7173027ce
2 changed files with 23 additions and 0 deletions

View File

@@ -144,6 +144,7 @@ public:
int len(std::string t);
void bigprint( int _x, int _y, std::string _s, int r, int g, int b, bool cen = false, int sc = 2 );
void bigbprint(int x, int y, 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);