diff --git a/Graphics/levels/Chapter05/Level04/Level04.MEX b/Graphics/levels/Chapter05/Level04/Level04.MEX index fce7c654e..19e152d7e 100644 Binary files a/Graphics/levels/Chapter05/Level04/Level04.MEX and b/Graphics/levels/Chapter05/Level04/Level04.MEX differ diff --git a/Graphics/levels/Chapter05/Level04/Level04.Mep b/Graphics/levels/Chapter05/Level04/Level04.Mep index 755049c56..13f0d4253 100644 Binary files a/Graphics/levels/Chapter05/Level04/Level04.Mep and b/Graphics/levels/Chapter05/Level04/Level04.Mep differ diff --git a/source/hazard/hboat.cpp b/source/hazard/hboat.cpp index adbe36f18..944627236 100644 --- a/source/hazard/hboat.cpp +++ b/source/hazard/hboat.cpp @@ -152,7 +152,7 @@ void CNpcBoatHazard::render() flip.vy = ONE; flip.vz = ONE; - m_modelGfx->Render( renderPos, NULL, &flip ); + m_modelGfx->RenderNoClip( renderPos, NULL, &flip ); } } } diff --git a/source/hazard/hcswitch.cpp b/source/hazard/hcswitch.cpp index a30601125..3a1eef821 100644 --- a/source/hazard/hcswitch.cpp +++ b/source/hazard/hcswitch.cpp @@ -67,7 +67,7 @@ void CNpcConveyorSwitchHazard::render() flip.vy = ONE; flip.vz = ONE; - m_modelGfx->Render( renderPos, NULL, &flip ); + m_modelGfx->RenderNoClip( renderPos, NULL, &flip ); } } } diff --git a/source/hazard/hfalling.cpp b/source/hazard/hfalling.cpp index a435c0a55..a57ef5b47 100644 --- a/source/hazard/hfalling.cpp +++ b/source/hazard/hfalling.cpp @@ -305,6 +305,6 @@ void CNpcFallingHazard::render() scale.vy = -m_scale; scale.vz = m_scale; - m_modelGfx->Render(renderPos,&rotation,&scale); + m_modelGfx->RenderNoClip(renderPos,&rotation,&scale); } }