mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-20 06:00:58 +00:00
Add DEC_U8A_2
This commit is contained in:
parent
b3bc4c5830
commit
ebcccdbb6f
@ -315,7 +315,15 @@ public:
|
||||
uv[1] = f[1];
|
||||
}
|
||||
break;
|
||||
|
||||
|
||||
case DEC_U8A_2:
|
||||
{
|
||||
const u8 *b = (const u8 *)(data_ + decFmt_.uvoff);
|
||||
uv[0] = (float)b[0];
|
||||
uv[1] = (float)b[1];
|
||||
}
|
||||
break;
|
||||
|
||||
case DEC_U16A_2:
|
||||
{
|
||||
const u16 *p = (const u16 *)(data_ + decFmt_.uvoff);
|
||||
|
Loading…
x
Reference in New Issue
Block a user