Make Timer SmartCtor
ClangFormat
Reactivate Graphical Error Screen
Fix Logger
Fix Image Rendering
This commit is contained in:
2024-06-15 15:12:06 +02:00
parent f7c0c83ac2
commit ec8743417d
17 changed files with 287 additions and 234 deletions

View File

@@ -51,10 +51,10 @@ void LoggerBase::Write(const std::string& debug_text, int lvl) {
if (this->_log.is_open() && lvl <= writelvl) {
this->_log << msg << std::endl;
}
while (msg.find_first_of('\n') != 0) {
/*while (msg.find_first_of('\n') != 0) {
lines.push_back(msg.substr(0, msg.find_first_of('\n')));
msg = msg.substr(msg.find_first_of('\n'));
}
}*/
lines.push_back(msg);
}