mirror of
https://github.com/hedge-dev/XenosRecomp.git
synced 2025-10-30 07:12:17 +00:00
Fix cast
Signed-off-by: Isaac Marovitz <isaacryu@icloud.com>
This commit is contained in:
parent
58e4631dce
commit
c3b320e314
1 changed files with 1 additions and 1 deletions
|
|
@ -364,7 +364,7 @@ float4 tfetchR11G11B10(uint4 value)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#ifdef __air__
|
#ifdef __air__
|
||||||
return (float4)value;
|
return as_type<float4>(value);
|
||||||
#else
|
#else
|
||||||
return asfloat(value);
|
return asfloat(value);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue