Skip to content

Commit

Permalink
Merge pull request #4243 from Sonicadvance1/fix_4155
Browse files Browse the repository at this point in the history
FEXLoader: Enable early logs output to stderr
  • Loading branch information
lioncash authored Jan 1, 2025
2 parents b391fe6 + 6ab214a commit e32c538
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Tools/FEXLoader/FEXLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ desc: Glues the ELF loader, FEXCore and LinuxSyscalls to launch an elf under fex
#include <sys/signal.h>

namespace {
static bool SilentLog;
static int OutputFD {-1};
static bool SilentLog {};
static int OutputFD {STDERR_FILENO};

void MsgHandler(LogMan::DebugLevels Level, const char* Message) {
if (SilentLog) {
Expand Down

0 comments on commit e32c538

Please sign in to comment.