mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
bprintalpha: Call PrintAlpha with a false cen
Whoops. This fixes it so the outlines actually show up on the horizontal sides of the outlined text.
This commit is contained in:
@@ -726,8 +726,8 @@ void Graphics::bprintalpha( int x, int y, const std::string& t, int r, int g, in
|
|||||||
if (cen)
|
if (cen)
|
||||||
{
|
{
|
||||||
const int x_cen = 160 - len(t)/2;
|
const int x_cen = 160 - len(t)/2;
|
||||||
PrintAlpha(x_cen - 1, y, t, 0, 0, 0, a, cen);
|
PrintAlpha(x_cen - 1, y, t, 0, 0, 0, a, false);
|
||||||
PrintAlpha(x_cen + 1, y, t, 0, 0, 0, a, cen);
|
PrintAlpha(x_cen + 1, y, t, 0, 0, 0, a, false);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user