mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Remove unused function Graphics::RPrint()
This function was marked as unused by cppcheck.
This commit is contained in:
parent
42106cb59a
commit
6261fa51e9
2 changed files with 0 additions and 36 deletions
|
@ -515,40 +515,6 @@ void Graphics::bprintalpha( int x, int y, std::string t, int r, int g, int b, in
|
|||
PrintAlpha(x, y, t, r, g, b, a, cen);
|
||||
}
|
||||
|
||||
void Graphics::RPrint( int _x, int _y, std::string _s, int r, int g, int b, bool cen /*= false*/ )
|
||||
{
|
||||
std::vector<SDL_Surface*>& font = flipmode ? flipbfont : bfont;
|
||||
|
||||
r = clamp(r,0,255);
|
||||
g = clamp(g,0,255);
|
||||
b = clamp(b,0,255);
|
||||
ct.colour = getRGB(r, g, b);
|
||||
|
||||
if (cen)
|
||||
_x = ((308) - (_s.length() / 2));
|
||||
int bfontpos = 0;
|
||||
int curr;
|
||||
int idx;
|
||||
std::string::iterator iter = _s.begin();
|
||||
while (iter != _s.end()) {
|
||||
curr = utf8::unchecked::next(iter);
|
||||
point tpoint;
|
||||
tpoint.x = _x + bfontpos;
|
||||
tpoint.y = _y;
|
||||
|
||||
SDL_Rect fontRect = bfont_rect;
|
||||
fontRect.x = tpoint.x ;
|
||||
fontRect.y = tpoint.y ;
|
||||
|
||||
idx = font_idx(curr);
|
||||
if (INBOUNDS_VEC(idx, font))
|
||||
{
|
||||
BlitSurfaceColoured( font[idx], NULL, backBuffer, &fontRect , ct);
|
||||
}
|
||||
bfontpos+=bfontlen(curr) ;
|
||||
}
|
||||
}
|
||||
|
||||
void Graphics::printcrewname( int x, int y, int t )
|
||||
{
|
||||
//Print the name of crew member t in the right colour
|
||||
|
|
|
@ -111,8 +111,6 @@ public:
|
|||
|
||||
void PrintAlpha(int _x, int _y, std::string _s, int r, int g, int b, int a, bool cen = false);
|
||||
|
||||
void RPrint(int _x, int _y, std::string _s, int r, int g, int b, bool cen = false);
|
||||
|
||||
void PrintOffAlpha(int _x, int _y, std::string _s, int r, int g, int b, int a, bool cen = false);
|
||||
|
||||
void bprint(int x, int y, std::string t, int r, int g, int b, bool cen = false);
|
||||
|
|
Loading…
Reference in a new issue