mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-16 06:06:59 +02:00
fixasserts
Signed-off-by: lizzie <lizzie@eden-emu.dev>
This commit is contained in:
parent
d124bdd648
commit
35a66ac73a
1 changed files with 1 additions and 4 deletions
|
|
@ -113,10 +113,7 @@ public:
|
||||||
case 16:
|
case 16:
|
||||||
return LeastSignificantHalf(value);
|
return LeastSignificantHalf(value);
|
||||||
case 32:
|
case 32:
|
||||||
if (value.GetType() == Type::U32) {
|
return value.GetType() == Type::U32 ? value : LeastSignificantWord(value);
|
||||||
return value;
|
|
||||||
}
|
|
||||||
return LeastSignificantWord(value);
|
|
||||||
case 64:
|
case 64:
|
||||||
ASSERT(value.GetType() == Type::U64);
|
ASSERT(value.GetType() == Type::U64);
|
||||||
return value;
|
return value;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue