diff options
| -rw-r--r-- | src/emu/x64run660f.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/x64run660f.c b/src/emu/x64run660f.c index 654cd684..28d04cd8 100644 --- a/src/emu/x64run660f.c +++ b/src/emu/x64run660f.c @@ -638,8 +638,7 @@ uintptr_t Run660F(x64emu_t *emu, rex_t rex, uintptr_t addr) GETEX(0); GETGX; for(int i=0; i<4; ++i) - if(GX->ud[i]<EX->ud[i]) - GX->ud[i] *= EX->ud[i]; + GX->ud[i] *= EX->ud[i]; break; case 0xDB: /* AESIMC Gx, Ex */ |