From e90802e762c0a15bd0d7bb7f5df006a4298e1023 Mon Sep 17 00:00:00 2001 From: VolcaEM <63682805+VolcaEM@users.noreply.github.com> Date: Wed, 15 Jul 2020 01:22:52 +0200 Subject: [PATCH] clang-format --- src/core/memory/dmnt_cheat_vm.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/memory/dmnt_cheat_vm.cpp b/src/core/memory/dmnt_cheat_vm.cpp index 0faebe951..2e7da23fe 100644 --- a/src/core/memory/dmnt_cheat_vm.cpp +++ b/src/core/memory/dmnt_cheat_vm.cpp @@ -1173,7 +1173,8 @@ void DmntCheatVm::Execute(const CheatProcessMetadata& metadata) { } } } - } else if (auto rw_static_reg = std::get_if(&cur_opcode.opcode)) { + } else if (auto rw_static_reg = + std::get_if(&cur_opcode.opcode)) { if (rw_static_reg->static_idx < NumReadableStaticRegisters) { // Load a register with a static register. registers[rw_static_reg->idx] = static_registers[rw_static_reg->static_idx];