mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-10 20:25:06 +01:00
Merge pull request #3694 from jroweboy/quickfix
Fix duplicated logs on windows
This commit is contained in:
commit
9c65a45358
@ -34,6 +34,12 @@ void ToggleConsole() {
|
||||
freopen_s(&temp, "NUL", "w", stderr);
|
||||
}
|
||||
}
|
||||
#else
|
||||
if (UISettings::values.show_console) {
|
||||
Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>());
|
||||
} else {
|
||||
Log::RemoveBackend(Log::ColorConsoleBackend::Name());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
} // namespace Debugger
|
||||
|
@ -1338,8 +1338,6 @@ void GMainWindow::SyncMenuUISettings() {
|
||||
#endif
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
Log::AddBackend(std::make_unique<Log::ColorConsoleBackend>());
|
||||
|
||||
MicroProfileOnThreadCreate("Frontend");
|
||||
SCOPE_EXIT({ MicroProfileShutdown(); });
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user