From 8682525b888c261387d02d468d38112000a606e0 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sun, 13 Mar 2022 15:17:13 -0400 Subject: [PATCH] CCubeRenderer: Fix call to SetChanMatColor --- Runtime/Graphics/CCubeRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Graphics/CCubeRenderer.cpp b/Runtime/Graphics/CCubeRenderer.cpp index c834f5ac7..f0b5523aa 100644 --- a/Runtime/Graphics/CCubeRenderer.cpp +++ b/Runtime/Graphics/CCubeRenderer.cpp @@ -557,7 +557,7 @@ void CCubeRenderer::ActivateLightsForModel(const CAreaListItem* areaItem, CCubeM CGX::SetChanMatColor(CGX::EChannelId::Channel0, zeus::skWhite); } else { CGraphics::DisableAllLights(); - CGX::SetChanAmbColor(CGX::EChannelId::Channel0, CGX::GetChanAmbColor(CGX::EChannelId::Channel0)); + CGX::SetChanMatColor(CGX::EChannelId::Channel0, CGX::GetChanAmbColor(CGX::EChannelId::Channel0)); } }