mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-09 12:19:12 +00:00
correct errors
This commit is contained in:
parent
b89681c596
commit
a79db3a74d
1 changed files with 1 additions and 13 deletions
|
@ -87,14 +87,8 @@ namespace ChocolArm64.Instruction
|
||||||
|
|
||||||
int Shift = GetImmShr(Op);
|
int Shift = GetImmShr(Op);
|
||||||
|
|
||||||
long RoundConst = 1L << (Shift - 1);
|
|
||||||
|
|
||||||
Action Emit = () =>
|
Action Emit = () =>
|
||||||
{
|
{
|
||||||
Context.EmitLdc_I8(RoundConst);
|
|
||||||
|
|
||||||
Context.Emit(OpCodes.Add);
|
|
||||||
|
|
||||||
Context.EmitLdc_I4(Shift);
|
Context.EmitLdc_I4(Shift);
|
||||||
|
|
||||||
Context.Emit(OpCodes.Shr);
|
Context.Emit(OpCodes.Shr);
|
||||||
|
@ -109,14 +103,8 @@ namespace ChocolArm64.Instruction
|
||||||
|
|
||||||
int Shift = GetImmShr(Op);
|
int Shift = GetImmShr(Op);
|
||||||
|
|
||||||
long RoundConst = 1L << (Shift - 1);
|
|
||||||
|
|
||||||
Action Emit = () =>
|
Action Emit = () =>
|
||||||
{
|
{
|
||||||
Context.EmitLdc_I8(RoundConst);
|
|
||||||
|
|
||||||
Context.Emit(OpCodes.Add);
|
|
||||||
|
|
||||||
Context.EmitLdc_I4(Shift);
|
Context.EmitLdc_I4(Shift);
|
||||||
|
|
||||||
Context.Emit(OpCodes.Shr);
|
Context.Emit(OpCodes.Shr);
|
||||||
|
|
Loading…
Reference in a new issue