mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Run clang-format on missed files
`clang-format`s files that lint missed because of the bug. Fortunately, not much.
This commit is contained in:
@ -905,8 +905,8 @@ void UpdateTitle()
|
||||
(u32)Movie::GetCurrentFrame(), FPS, VPS, Speed);
|
||||
else if (Movie::IsRecordingInput())
|
||||
SFPS = StringFromFormat("Input: %u - VI: %u - FPS: %.0f - VPS: %.0f - %.0f%%",
|
||||
(u32)Movie::GetCurrentInputCount(), (u32)Movie::GetCurrentFrame(), FPS, VPS,
|
||||
Speed);
|
||||
(u32)Movie::GetCurrentInputCount(), (u32)Movie::GetCurrentFrame(), FPS,
|
||||
VPS, Speed);
|
||||
else
|
||||
{
|
||||
SFPS = StringFromFormat("FPS: %.0f - VPS: %.0f - %.0f%%", FPS, VPS, Speed);
|
||||
|
@ -53,7 +53,7 @@ void JitArm64::GenerateAsm()
|
||||
{
|
||||
// set the mem_base based on MSR flags
|
||||
LDR(INDEX_UNSIGNED, ARM64Reg::W28, PPC_REG, PPCSTATE_OFF(msr));
|
||||
FixupBranch physmem = TBNZ(ARM64Reg::W28, 31-27);
|
||||
FixupBranch physmem = TBNZ(ARM64Reg::W28, 31 - 27);
|
||||
MOVI2R(MEM_REG, (u64)Memory::physical_base);
|
||||
FixupBranch membaseend = B();
|
||||
SetJumpTarget(physmem);
|
||||
@ -103,7 +103,7 @@ void JitArm64::GenerateAsm()
|
||||
|
||||
// set the mem_base based on MSR flags
|
||||
LDR(INDEX_UNSIGNED, ARM64Reg::W28, PPC_REG, PPCSTATE_OFF(msr));
|
||||
FixupBranch physmem = TBNZ(ARM64Reg::W28, 31-27);
|
||||
FixupBranch physmem = TBNZ(ARM64Reg::W28, 31 - 27);
|
||||
MOVI2R(MEM_REG, (u64)Memory::physical_base);
|
||||
FixupBranch membaseend = B();
|
||||
SetJumpTarget(physmem);
|
||||
|
Reference in New Issue
Block a user