From 5cc96939d41cee5ce4be336f5f1a5ff7e01ac57c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20H=C3=B6hne?= Date: Thu, 1 May 2025 19:49:28 +0200 Subject: [PATCH] fix: phanes_game is now of pointer type. --- .../Core/StartingPoint/private/EntryPoint.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Engine/Source/Runtime/Core/StartingPoint/private/EntryPoint.cpp b/Engine/Source/Runtime/Core/StartingPoint/private/EntryPoint.cpp index 329a9a4..87074e3 100644 --- a/Engine/Source/Runtime/Core/StartingPoint/private/EntryPoint.cpp +++ b/Engine/Source/Runtime/Core/StartingPoint/private/EntryPoint.cpp @@ -6,17 +6,17 @@ extern Phanes::Core::Application::PhanesProject* Phanes::Core::Application::Crea int main() { - Phanes::Core::Logging::Logger::Init(); - PENGINE_LOG_INFO("Logger initialized!"); - PENGINE_LOG_INFO("Welcome to PhanesEngine!"); + Phanes::Core::Logging::Logger::Init(); + PENGINE_LOG_INFO("Logger initialized!"); + PENGINE_LOG_INFO("Welcome to PhanesEngine!"); - auto phanes_game = Phanes::Core::Application::CreatePhanesGame(); + auto* phanes_game = Phanes::Core::Application::CreatePhanesGame(); - phanes_game->Run(); + phanes_game->Run(); - delete phanes_game; + delete phanes_game; - return 0; + return 0; } -#endif \ No newline at end of file +#endif