drcbec: fixed long-standing copy/paste error (nw)

This commit is contained in:
arbee 2017-01-24 21:41:52 -05:00
parent dc374ba4b6
commit 037d214ae7

View File

@ -1747,7 +1747,7 @@ int drcbe_c::execute(code_handle &entry)
break;
case MAKE_OPCODE_SHORT(OP_ROL, 8, 0): // DROL dst,src,count[,f]
shift = DPARAM2 & 31;
shift = DPARAM2 & 63;
DPARAM0 = (DPARAM1 << shift) | (DPARAM1 >> ((64 - shift) & 63));
break;