From ef771e64894d874c0a7c39dd3594000d5b2c47d5 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Sat, 14 May 2022 13:22:50 -0700 Subject: [PATCH] Re-enable texture load in CRasterFont --- Runtime/GuiSys/CRasterFont.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/GuiSys/CRasterFont.cpp b/Runtime/GuiSys/CRasterFont.cpp index 6a494e148..dddd9b007 100644 --- a/Runtime/GuiSys/CRasterFont.cpp +++ b/Runtime/GuiSys/CRasterFont.cpp @@ -216,7 +216,7 @@ void CRasterFont::SetupRenderState() { {GX::VA_NULL, GX::NONE} }; - //x80_texture->Load(GX::TEXMAP0, EClampMode::Clamp); + x80_texture->Load(GX::TEXMAP0, EClampMode::Clamp); CGX::SetTevKAlphaSel(GX::TEVSTAGE0, GX::TEV_KASEL_K0_A); CGX::SetTevKColorSel(GX::TEVSTAGE0, GX::TEV_KCSEL_K0); CGX::SetTevColorIn(GX::TEVSTAGE0, GX::CC_ZERO, GX::CC_TEXC, GX::CC_KONST, GX::CC_ZERO);