1.0 branch: Merge fix from r5301.

git-svn-id: http://pcsx2.googlecode.com/svn/branches/1.0.0@5333 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2012-07-03 13:59:04 +00:00
parent 94cc3d4194
commit d39398ee5a
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ float4 sample_c(float2 uv)
float4 sample_p(float u)
{
return tex2D(Palette, u * 255./256 + 0.5/256);
return tex2D(Palette, u);
}
float4 sample_rt(float2 uv)