Remove outdated Hammer fallback in WorldVertexTransition

This commit is contained in:
Blixibon 2025-07-25 20:53:28 -05:00
parent cbb5010c64
commit d9a8cdd1b5

View File

@ -182,6 +182,7 @@ BEGIN_VS_SHADER( WorldVertexTransition_DX9, "Help for WorldVertexTransition" )
SHADER_DRAW SHADER_DRAW
{ {
#ifndef MAPBASE
if ( UsingEditor( params ) ) if ( UsingEditor( params ) )
{ {
WorldVertexTransitionEditor_DX8_Vars_t info; WorldVertexTransitionEditor_DX8_Vars_t info;
@ -189,6 +190,7 @@ BEGIN_VS_SHADER( WorldVertexTransition_DX9, "Help for WorldVertexTransition" )
DrawWorldVertexTransitionEditor_DX8( this, params, pShaderAPI, pShaderShadow, info ); DrawWorldVertexTransitionEditor_DX8( this, params, pShaderAPI, pShaderShadow, info );
return; return;
} }
#endif
DrawLightmappedGeneric_DX9( this, params, pShaderAPI, pShaderShadow, s_info, pContextDataPtr ); DrawLightmappedGeneric_DX9( this, params, pShaderAPI, pShaderShadow, s_info, pContextDataPtr );
} }