mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix tab issue
This commit is contained in:
parent
b7ef3ad9e9
commit
fb773b5acf
1 changed files with 7 additions and 7 deletions
|
@ -517,13 +517,13 @@ namespace MIPSInt
|
|||
ApplySwizzleS(s, sz);
|
||||
int n=GetNumVectorElements(sz);
|
||||
float x = s[0];
|
||||
d[0] = std::min(std::max(0.0f, 1.0f - x), 1.0f);
|
||||
d[1] = std::min(std::max(0.0f, x), 1.0f);
|
||||
if (n > 1) {
|
||||
float y = s[1];
|
||||
d[2] = std::min(std::max(0.0f, 1.0f - y), 1.0f);
|
||||
d[3] = std::min(std::max(0.0f, y), 1.0f);
|
||||
}
|
||||
d[0] = std::min(std::max(0.0f, 1.0f - x), 1.0f);
|
||||
d[1] = std::min(std::max(0.0f, x), 1.0f);
|
||||
if (n > 1) {
|
||||
float y = s[1];
|
||||
d[2] = std::min(std::max(0.0f, 1.0f - y), 1.0f);
|
||||
d[3] = std::min(std::max(0.0f, y), 1.0f);
|
||||
}
|
||||
ApplyPrefixD(d, sz);
|
||||
WriteVector(d, sz, vd);
|
||||
PC += 4;
|
||||
|
|
Loading…
Add table
Reference in a new issue