From 6dedf11c964d3f08bab46f52bfc791d282186db3 Mon Sep 17 00:00:00 2001 From: iwubcode Date: Sun, 2 Mar 2025 11:27:54 -0600 Subject: [PATCH] VideoCommon: mark 'WriteTexCoordTransforms' as 'static' --- Source/Core/VideoCommon/VertexShaderGen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/VideoCommon/VertexShaderGen.cpp b/Source/Core/VideoCommon/VertexShaderGen.cpp index 5512b0f1c4..41512cd489 100644 --- a/Source/Core/VideoCommon/VertexShaderGen.cpp +++ b/Source/Core/VideoCommon/VertexShaderGen.cpp @@ -74,8 +74,8 @@ VertexShaderUid GetVertexShaderUid() return out; } -void WriteTexCoordTransforms(APIType api_type, const ShaderHostConfig& host_config, - const vertex_shader_uid_data* uid_data, ShaderCode& out) +static void WriteTexCoordTransforms(APIType api_type, const ShaderHostConfig& host_config, + const vertex_shader_uid_data* uid_data, ShaderCode& out) { for (u32 i = 0; i < uid_data->numTexGens; ++i) {