diff --git a/src/common/memory_patcher.cpp b/src/common/memory_patcher.cpp index 6aedc365..ba97d97d 100644 --- a/src/common/memory_patcher.cpp +++ b/src/common/memory_patcher.cpp @@ -1,9 +1,9 @@ // SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later -#include "common/logging/log.h" #include #include +#include "common/logging/log.h" #include "memory_patcher.h" namespace MemoryPatcher { @@ -27,8 +27,8 @@ void ApplyPendingPatches() { pending_patches.clear(); } -void PatchMemory(std::string modNameStr, std::string offsetStr, std::string valueStr, - bool isOffset, bool littleEndian) { +void PatchMemory(std::string modNameStr, std::string offsetStr, std::string valueStr, bool isOffset, + bool littleEndian) { // Send a request to modify the process memory. void* cheatAddress = nullptr;