GSdx-d3d: s/sample_4a/sample_4_index/

This commit is contained in:
lightningterror 2018-08-01 23:21:46 +02:00
parent 188a1f1416
commit 6eb385fd9b
1 changed files with 2 additions and 2 deletions

View File

@ -333,7 +333,7 @@ float4x4 sample_4c(float4 uv)
return c;
}
float4 sample_4a(float4 uv)
float4 sample_4_index(float4 uv)
{
float4 c;
@ -415,7 +415,7 @@ float4 sample(float2 st, float q)
uv = clamp_wrap_uv(uv);
#if PS_PAL_FMT != 0
c = sample_4p(sample_4a(uv));
c = sample_4p(sample_4_index(uv));
#else
c = sample_4c(uv);
#endif