mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Erp, dumb typo.
This commit is contained in:
parent
c8db6fed78
commit
ba77ad607e
1 changed files with 3 additions and 3 deletions
|
@ -565,7 +565,7 @@ CheckAlphaResult CheckAlphaABGR4444Basic(const u32 *pixelData, int stride, int w
|
|||
return CHECKALPHA_ANY;
|
||||
}
|
||||
}
|
||||
p += stride;
|
||||
p += stride2;
|
||||
}
|
||||
|
||||
if (hitZeroAlpha) {
|
||||
|
@ -594,7 +594,7 @@ CheckAlphaResult CheckAlphaABGR1555Basic(const u32 *pixelData, int stride, int w
|
|||
u32 a = p[i] & 0x00010001;
|
||||
hitZeroAlpha |= a ^ 0x00010001;
|
||||
}
|
||||
p += stride;
|
||||
p += stride2;
|
||||
}
|
||||
|
||||
if (hitZeroAlpha) {
|
||||
|
@ -627,7 +627,7 @@ CheckAlphaResult CheckAlphaRGBA4444Basic(const u32 *pixelData, int stride, int w
|
|||
return CHECKALPHA_ANY;
|
||||
}
|
||||
}
|
||||
p += stride;
|
||||
p += stride2;
|
||||
}
|
||||
|
||||
if (hitZeroAlpha) {
|
||||
|
|
Loading…
Add table
Reference in a new issue