micro improvements

This commit is contained in:
Kueffner, Maximilian
2025-05-23 15:15:01 +02:00
parent 436a61790c
commit 167dc1f9d4
7 changed files with 19 additions and 13 deletions
+1 -1
View File
@@ -221,7 +221,7 @@ void pixelarium::ui::AppGLFW::LoadImageProt()
// __FUNCTION__);
if (this->_logger)
{
this->_logger->Warn("Creating image");
this->_logger->Warn(std::format("Creating image {}", p));
}
// this->_img = Image(p);
this->_img = std::make_shared<Image>(p);
+2 -1
View File
@@ -4,6 +4,7 @@
#include "AppGLFW.hpp"
#include "utilities/ILog.hpp"
#include "utilities/SpdLogger.hpp"
#include "uiresources.h"
int main(int argc, char** argv)
{
@@ -16,7 +17,7 @@ int main(int argc, char** argv)
auto app = pixelarium::ui::AppGLFW(logger);
// auto app = pixelarium::ui::AppGLFW();
logger->Info("Starting Application");
logger->Info(std::format("Starting Application {}", PIXELARIUM_TITLE));
logger->Error("Starting Application");
return app.Run();
}