mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 15:19:09 +00:00
JitArm64: Fix JitRegister::Register call for cstd
Seems like I made a little copy-paste error.
This commit is contained in:
parent
a8c40eb510
commit
b305e4cfc1
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ void JitArm64::GenerateCommonAsm()
|
||||||
|
|
||||||
GetAsmRoutines()->cstd = GetCodePtr();
|
GetAsmRoutines()->cstd = GetCodePtr();
|
||||||
GenerateConvertSingleToDouble();
|
GenerateConvertSingleToDouble();
|
||||||
JitRegister::Register(GetAsmRoutines()->cdts, GetCodePtr(), "JIT_cstd");
|
JitRegister::Register(GetAsmRoutines()->cstd, GetCodePtr(), "JIT_cstd");
|
||||||
|
|
||||||
GenerateQuantizedLoadStores();
|
GenerateQuantizedLoadStores();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue