From d9a8cdd1b5b3d3fc6d4dd9b7ebcd166f460c33ec Mon Sep 17 00:00:00 2001 From: Blixibon Date: Fri, 25 Jul 2025 20:53:28 -0500 Subject: [PATCH] Remove outdated Hammer fallback in WorldVertexTransition --- src/materialsystem/stdshaders/worldvertextransition.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/materialsystem/stdshaders/worldvertextransition.cpp b/src/materialsystem/stdshaders/worldvertextransition.cpp index 748b2bc0..d5d1bb17 100644 --- a/src/materialsystem/stdshaders/worldvertextransition.cpp +++ b/src/materialsystem/stdshaders/worldvertextransition.cpp @@ -182,6 +182,7 @@ BEGIN_VS_SHADER( WorldVertexTransition_DX9, "Help for WorldVertexTransition" ) SHADER_DRAW { +#ifndef MAPBASE if ( UsingEditor( params ) ) { WorldVertexTransitionEditor_DX8_Vars_t info; @@ -189,6 +190,7 @@ BEGIN_VS_SHADER( WorldVertexTransition_DX9, "Help for WorldVertexTransition" ) DrawWorldVertexTransitionEditor_DX8( this, params, pShaderAPI, pShaderShadow, info ); return; } +#endif DrawLightmappedGeneric_DX9( this, params, pShaderAPI, pShaderShadow, s_info, pContextDataPtr ); }