Browse Source

fix

liz-get-rid-of-mcl-intrusive-list
lizzie 3 months ago
parent
commit
6299b8fe3c
  1. 4
      src/dynarmic/src/dynarmic/ir/ir_emitter.h

4
src/dynarmic/src/dynarmic/ir/ir_emitter.h

@ -113,7 +113,9 @@ public:
case 16:
return LeastSignificantHalf(value);
case 32:
return value.GetType() == Type::U32 ? value : LeastSignificantWord(value);
if (value.GetType() == Type::U32)
return value;
return LeastSignificantWord(value);
case 64:
ASSERT(value.GetType() == Type::U64);
return value;

Loading…
Cancel
Save