mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Completely remove Graphics::PrintAlpha and Graphics::bprintalpha
Only four deprecated functions remain: - Graphics::Print - Graphics::PrintWrap - Graphics::bigprint - Graphics::bprint Graphics::bprint is the least-used one of them, and after that, the other functions are used a LOT, but it'll be a lot faster to go through them, since I have less and less flags to worry about. I'll probably start using Vim macros again like I did for loc::gettext()ing strings, or maybe I'll automate this completely.
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
9749858365
commit
d784f7f61a
@@ -204,14 +204,10 @@ public:
|
||||
|
||||
void Print(int _x, int _y, const std::string& _s, int r, int g, int b, bool cen = false);
|
||||
|
||||
void PrintAlpha(int _x, int _y, const std::string& _s, int r, int g, int b, int a, bool cen = false);
|
||||
|
||||
int PrintWrap(int x, int y, const std::string& s, int r, int g, int b, bool cen = false, int linespacing = -1, int maxwidth = -1);
|
||||
|
||||
void bprint(int x, int y, const std::string& t, int r, int g, int b, bool cen = false);
|
||||
|
||||
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 drawspritesetcol(int x, int y, int t, int c);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user