micro improvements
This commit is contained in:
+1
-1
@@ -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
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user