From ad9d215d3db8ea465d20a8db5cee0e3b76be3e7f Mon Sep 17 00:00:00 2001 From: cypress Date: Mon, 2 Sep 2024 19:25:45 -0700 Subject: [PATCH] NX/VITA: Fix call to Draw_AlphaStretchPic --- source/gl_hud.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/gl_hud.c b/source/gl_hud.c index fc74ab1..d046702 100644 --- a/source/gl_hud.c +++ b/source/gl_hud.c @@ -524,9 +524,9 @@ void HUD_Points (void) #ifdef VITA - Draw_StretchPic(x_position, 407 - (35 * i), 128, 32, 255, moneyback); + Draw_AlphaStretchPic(x_position, 407 - (35 * i), 128, 32, 255, moneyback); #else - Draw_StretchPic(x_position, 629 - (24 * i), 86, 21, 255, moneyback); + Draw_AlphaStretchPic(x_position, 629 - (24 * i), 86, 21, 255, moneyback); #endif // VITA #ifdef VITA