From 01c37cf2c906cd704b26cfbc97a9d3fca87ce14f Mon Sep 17 00:00:00 2001 From: jyelon Date: Mon, 4 Sep 2023 03:27:31 -0400 Subject: [PATCH] No, THIS is the major overhaul of DebugPrint --- Source/Integration/{engineutil.cpp => DebugPrint.cpp} | 2 +- Source/Integration/{engineutil.hpp => DebugPrint.h} | 0 Source/Integration/IntegrationGameModeBase.cpp | 2 +- Source/Integration/IntegrationGameModeBase.h | 4 ++-- Source/Integration/LockedWrapper.cpp | 2 +- Source/Integration/LuprexSockets.cpp | 4 ++-- Source/Integration/{LuprexSockets.hpp => LuprexSockets.h} | 0 7 files changed, 7 insertions(+), 7 deletions(-) rename Source/Integration/{engineutil.cpp => DebugPrint.cpp} (99%) rename Source/Integration/{engineutil.hpp => DebugPrint.h} (100%) rename Source/Integration/{LuprexSockets.hpp => LuprexSockets.h} (100%) diff --git a/Source/Integration/engineutil.cpp b/Source/Integration/DebugPrint.cpp similarity index 99% rename from Source/Integration/engineutil.cpp rename to Source/Integration/DebugPrint.cpp index e86e810b..6642cc51 100644 --- a/Source/Integration/engineutil.cpp +++ b/Source/Integration/DebugPrint.cpp @@ -1,5 +1,5 @@ +#include "DebugPrint.h" #include "CoreMinimal.h" -#include "engineutil.hpp" using DPrintCallback = DebugPrintControl::DPrintCallback; diff --git a/Source/Integration/engineutil.hpp b/Source/Integration/DebugPrint.h similarity index 100% rename from Source/Integration/engineutil.hpp rename to Source/Integration/DebugPrint.h diff --git a/Source/Integration/IntegrationGameModeBase.cpp b/Source/Integration/IntegrationGameModeBase.cpp index 727a2cb9..3acc3e60 100644 --- a/Source/Integration/IntegrationGameModeBase.cpp +++ b/Source/Integration/IntegrationGameModeBase.cpp @@ -2,7 +2,7 @@ #include "IntegrationGameModeBase.h" #include "drvutil.hpp" -#include "engineutil.hpp" +#include "DebugPrint.h" #include "TangibleManager.h" #include #include diff --git a/Source/Integration/IntegrationGameModeBase.h b/Source/Integration/IntegrationGameModeBase.h index 964ff36c..b0eb66b1 100644 --- a/Source/Integration/IntegrationGameModeBase.h +++ b/Source/Integration/IntegrationGameModeBase.h @@ -5,9 +5,9 @@ #include "CoreMinimal.h" #include "GameFramework/GameModeBase.h" #include "enginewrapper.hpp" -#include "engineutil.hpp" +#include "DebugPrint.h" #include "TangibleManager.h" -#include "LuprexSockets.hpp" +#include "LuprexSockets.h" #include "IntegrationGameModeBase.generated.h" /** diff --git a/Source/Integration/LockedWrapper.cpp b/Source/Integration/LockedWrapper.cpp index 87aa7da2..1873c76f 100644 --- a/Source/Integration/LockedWrapper.cpp +++ b/Source/Integration/LockedWrapper.cpp @@ -1,6 +1,6 @@ #include "LockedWrapper.h" -#include "engineutil.hpp" +#include "DebugPrint.h" void FLockedWrapper::InitWrapper() { if (Lockable.Wrapper.play_initialize != nullptr) { diff --git a/Source/Integration/LuprexSockets.cpp b/Source/Integration/LuprexSockets.cpp index 093a2d5f..473bdc03 100644 --- a/Source/Integration/LuprexSockets.cpp +++ b/Source/Integration/LuprexSockets.cpp @@ -1,8 +1,8 @@ -#include "LuprexSockets.hpp" +#include "LuprexSockets.h" #include "enginewrapper.hpp" #include "drvutil.hpp" -#include "engineutil.hpp" +#include "DebugPrint.h" #include "Sockets.h" #include "SocketTypes.h" #include "SocketSubsystem.h" diff --git a/Source/Integration/LuprexSockets.hpp b/Source/Integration/LuprexSockets.h similarity index 100% rename from Source/Integration/LuprexSockets.hpp rename to Source/Integration/LuprexSockets.h