From 05c21bdce91e9e41ec7830718c2ca3448f86879d Mon Sep 17 00:00:00 2001 From: Maximilian Kueffner Date: Sun, 17 Aug 2025 21:56:24 +0200 Subject: [PATCH] dump unnecessary dependency --- src/main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 9bebb2c..cd1d862 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3,7 +3,6 @@ #include "MyApp.hpp" #include "resources/resource.hpp" -#include "uiresources.h" #include "utilities/ILog.hpp" #include "utilities/SpdLogger.hpp" @@ -18,7 +17,7 @@ int main(int argc, char** argv) #else logger = make_unique(std::string(getenv("HOME")) + "/.cache/pixelarium/log.log", "default"); #endif - logger->Info(std::format("{}: Starting Application {}", __FUNCTION__, PIXELARIUM_TITLE)); + logger->Info(std::format("{}: Starting Application {}", __FUNCTION__, "Pixelarium")); logger->ChangeLevel(utils::log::LogLevel::Debug); auto image_pool{std::make_unique()};