mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 09:28:15 +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)
|
||||
{
|
||||
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, cen);
|
||||
PrintAlpha(x_cen - 1, y, t, 0, 0, 0, a, false);
|
||||
PrintAlpha(x_cen + 1, y, t, 0, 0, 0, a, false);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user