mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-02 06:06:24 +00:00
vtxdec: small omission
This commit is contained in:
parent
4daebe9b0f
commit
0e542b6ecc
@ -1446,9 +1446,9 @@ void VertexDecoderJitCache::Jit_TcU16() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void VertexDecoderJitCache::Jit_TcU16Double() {
|
void VertexDecoderJitCache::Jit_TcU16Double() {
|
||||||
MOV(16, R(tempReg1), MDisp(srcReg, dec_->tcoff));
|
MOVZX(32, 16, tempReg1, MDisp(srcReg, dec_->tcoff));
|
||||||
MOV(16, R(tempReg2), MDisp(srcReg, dec_->tcoff + 2));
|
MOVZX(32, 16, tempReg2, MDisp(srcReg, dec_->tcoff + 2));
|
||||||
SHL(16, R(tempReg1), Imm8(1));
|
SHL(16, R(tempReg1), Imm8(1)); // 16 to get a wall to shift into
|
||||||
SHL(32, R(tempReg2), Imm8(17));
|
SHL(32, R(tempReg2), Imm8(17));
|
||||||
OR(32, R(tempReg1), R(tempReg2));
|
OR(32, R(tempReg1), R(tempReg2));
|
||||||
MOV(32, MDisp(dstReg, dec_->decFmt.uvoff), R(tempReg1));
|
MOV(32, MDisp(dstReg, dec_->decFmt.uvoff), R(tempReg1));
|
||||||
|
Loading…
Reference in New Issue
Block a user