2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-13 09:25:52 +00:00

CGuiFrame: Fix reversed SetCullMode

This commit is contained in:
Luke Street 2020-10-21 01:50:27 -04:00
parent 07c90c894a
commit 9da5ddff36

View File

@ -144,7 +144,7 @@ void CGuiFrame::Draw(const CGuiWidgetDrawParms& parms) const {
if (widget->GetIsVisible())
widget->Draw(parms);
CGraphics::SetCullMode(ERglCullMode::Front);
CGraphics::SetCullMode(ERglCullMode::Back);
}
CGuiWidget* CGuiFrame::BestCursorHit(const zeus::CVector2f& point, const CGuiWidgetDrawParms& parms) const {