mirror of
https://github.com/xenia-project/xenia.git
synced 2026-04-20 22:13:40 +00:00
Fixing cr5+ checks.
This commit is contained in:
parent
346a27ddf8
commit
c6ed7ff9cf
1 changed files with 1 additions and 1 deletions
|
|
@ -1066,7 +1066,7 @@ void X64Emitter::FillRegisters() {
|
|||
}
|
||||
// (cr >> 28 - n * 4) & 0xF
|
||||
c.mov(cr_tmp, cr);
|
||||
if (n < 4) {
|
||||
if (n < 7) {
|
||||
c.shr(cr_tmp, imm(28 - n * 4));
|
||||
}
|
||||
c.and_(cr_tmp, imm(0xF));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue