JitArm64: Fix JitRegister::Register call for cstd

Seems like I made a little copy-paste error.
This commit is contained in:
JosJuice 2021-05-06 00:20:13 +02:00
parent a8c40eb510
commit b305e4cfc1

View File

@ -201,7 +201,7 @@ void JitArm64::GenerateCommonAsm()
GetAsmRoutines()->cstd = GetCodePtr();
GenerateConvertSingleToDouble();
JitRegister::Register(GetAsmRoutines()->cdts, GetCodePtr(), "JIT_cstd");
JitRegister::Register(GetAsmRoutines()->cstd, GetCodePtr(), "JIT_cstd");
GenerateQuantizedLoadStores();
}