mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 18:59:41 +01:00
Merge pull request #71 from InfoTeddy/general-improvements
Re-add the font outline from the Flash and mobile versions
This commit is contained in:
commit
ede2456af4
1 changed files with 13 additions and 13 deletions
|
@ -380,19 +380,19 @@ void Graphics::bprint( int x, int y, std::string t, int r, int g, int b, bool ce
|
||||||
{
|
{
|
||||||
|
|
||||||
//printmask(x, y, t, cen);
|
//printmask(x, y, t, cen);
|
||||||
//Print(x, y - 1, t, 0, 0, 0, cen);
|
Print(x, y - 1, t, 0, 0, 0, cen);
|
||||||
//if (cen)
|
if (cen)
|
||||||
//{
|
{
|
||||||
// //TODO find different
|
//TODO find different
|
||||||
// PrintOff(-1, y, t, 0, 0, 0, cen);
|
PrintOff(-1, y, t, 0, 0, 0, cen);
|
||||||
// PrintOff(1, y, t, 0, 0, 0, cen);
|
PrintOff(1, y, t, 0, 0, 0, cen);
|
||||||
//}
|
}
|
||||||
//else
|
else
|
||||||
//{
|
{
|
||||||
// Print(x -1, y, t, 0, 0, 0, cen);
|
Print(x -1, y, t, 0, 0, 0, cen);
|
||||||
// Print(x , y, t, 0, 0, 0, cen);
|
Print(x +1, y, t, 0, 0, 0, cen);
|
||||||
//}
|
}
|
||||||
//Print(x, y+1, t, 0, 0, 0, cen);
|
Print(x, y+1, t, 0, 0, 0, cen);
|
||||||
|
|
||||||
Print(x, y, t, r, g, b, cen);
|
Print(x, y, t, r, g, b, cen);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue