From 2c0d6920e8cb42d90106b0a35d1d678b32ab4afa Mon Sep 17 00:00:00 2001 From: Misa Date: Mon, 6 Sep 2021 19:50:24 -0700 Subject: [PATCH] `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. --- desktop_version/src/Graphics.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop_version/src/Graphics.cpp b/desktop_version/src/Graphics.cpp index f8a28484..db6cef1d 100644 --- a/desktop_version/src/Graphics.cpp +++ b/desktop_version/src/Graphics.cpp @@ -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 {