From 100b5385481cfb7d0844e539f629e4a7ee80dc86 Mon Sep 17 00:00:00 2001 From: Amos Date: Sat, 11 Feb 2023 17:44:16 +0100 Subject: [PATCH] Light format change --- r5dev/core/stdafx.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/r5dev/core/stdafx.h b/r5dev/core/stdafx.h index 2a765bc9..65a237de 100644 --- a/r5dev/core/stdafx.h +++ b/r5dev/core/stdafx.h @@ -136,14 +136,14 @@ ReturnType CallVFunc(int index, void* thisPtr, Args... args) inline void LogFunAdr(const char* szFun, uintptr_t nAdr) // Logging function addresses. { - spdlog::debug("| FUN: {:42s}: {:#18x} |\n", szFun, nAdr); + spdlog::debug("| {:s}: {:42s}: {:#18x} |\n", "FUN", szFun, nAdr); } inline void LogVarAdr(const char* szVar, uintptr_t nAdr) // Logging variable addresses. { - spdlog::debug("| VAR: {:42s}: {:#18x} |\n", szVar, nAdr); + spdlog::debug("| {:s}: {:42s}: {:#18x} |\n", "VAR", szVar, nAdr); } inline void LogConAdr(const char* szCon, uintptr_t nAdr) // Logging constant addresses. { - spdlog::debug("| CON: {:42s}: {:#18x} |\n", szCon, nAdr); + spdlog::debug("| {:s}: {:42s}: {:#18x} |\n", "CON", szCon, nAdr); } #endif // !SDKLAUNCHER && !NETCONSOLE && !PLUGINSDK \ No newline at end of file