mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-10 07:38:56 +02:00
fix
This commit is contained in:
parent
35a66ac73a
commit
6299b8fe3c
1 changed files with 3 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue