From c9551328bd9c10a5d998229023e9d7dcf402db55 Mon Sep 17 00:00:00 2001 From: CrazyBloo Date: Fri, 23 Aug 2024 23:03:22 -0400 Subject: [PATCH] format --- src/common/memory_patcher.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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;