fix: ImHex not properly loading plugins on first launch

This commit is contained in:
WerWolv 2022-02-26 00:10:23 +01:00
parent 73d74f6cde
commit e3fbb490df
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,8 @@ namespace hex::log {
void redirectToFile() {
if (g_loggerFile.isValid()) return;
for (const auto &path : hex::getPath(ImHexPath::Logs)) {
for (const auto &path : hex::getPath(ImHexPath::Logs, true)) {
fs::create_directories(path);
g_loggerFile = File(path / hex::format("{0:%Y%m%d_%H%M%S}.log", fmt::localtime(std::chrono::system_clock::now())), File::Mode::Create);
if (g_loggerFile.isValid()) break;