From 6299674125d7a6374907a752149d3d54f459d672 Mon Sep 17 00:00:00 2001 From: InspirationByte Date: Wed, 2 Feb 2022 08:41:24 +0300 Subject: [PATCH] - remove some ifdefs --- src_rebuild/Game/Frontend/FEmain.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src_rebuild/Game/Frontend/FEmain.c b/src_rebuild/Game/Frontend/FEmain.c index b6173b1b..05620ca2 100644 --- a/src_rebuild/Game/Frontend/FEmain.c +++ b/src_rebuild/Game/Frontend/FEmain.c @@ -1761,9 +1761,7 @@ int FEPrintString(char *string, int x, int y, int justification, int r, int g, i pFontInfo = &feFont.CharInfo[let]; setSprt(font); -#ifdef PSX setSemiTrans(font, 1); -#endif setRGB0(font, r, g, b); setXY0(font, x, y); @@ -1833,9 +1831,7 @@ int FEPrintStringSized(char *string, int x, int y, int scale, int transparent, i h = (pFontInfo->h * scale) / 4096; setPolyFT4(font); -#ifdef PSX - setSemiTrans(font, transparent); -#endif + setSemiTrans(font, transparent); setRGB0(font, 128, 128, 128); setUVWH(font, pFontInfo->u, pFontInfo->v, pFontInfo->w - 1, pFontInfo->h - 1);