1
0
mirror of synced 2025-01-30 03:27:25 +01:00

fix: ImHex not starting at all anymore when launched through the explorer

This commit is contained in:
WerWolv 2023-09-03 14:07:47 +02:00
parent b2d1568abb
commit dc5e5344c5

View File

@ -47,7 +47,7 @@ namespace hex::log {
fmt::print(dest, "[{0}] ", IMHEX_PROJECT_NAME);
constexpr static auto ProjectNameLength = std::char_traits<char>::length(IMHEX_PROJECT_NAME);
fmt::print("{}", std::string(ProjectNameLength > 10 ? 0 : 10 - ProjectNameLength, ' '));
fmt::print(dest, "{}", std::string(ProjectNameLength > 10 ? 0 : 10 - ProjectNameLength, ' '));
}
template<typename... T>