diff options
author | tgsm <thomas.gresham@hotmail.com> | 2018-09-06 21:03:41 -0400 |
---|---|---|
committer | tgsm <thomas.gresham@hotmail.com> | 2018-09-08 03:12:47 -0400 |
commit | 975226e7ff94eee67cf53defd356686356946020 (patch) | |
tree | 294add529463151c383c9fcd79c6ddab395878d7 /src | |
parent | a8974f0556885857e2c0cd7509de0a80d5525983 (diff) |
yuzu-cmd: fix SDL logging
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu_cmd/yuzu.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp index 173ac0e0f..b1c364fbb 100644 --- a/src/yuzu_cmd/yuzu.cpp +++ b/src/yuzu_cmd/yuzu.cpp @@ -82,6 +82,9 @@ int main(int argc, char** argv) { int option_index = 0; bool use_gdbstub = Settings::values.use_gdbstub; u32 gdb_port = static_cast<u32>(Settings::values.gdbstub_port); + + InitializeLogging(); + char* endarg; #ifdef _WIN32 int argc_w; @@ -144,8 +147,6 @@ int main(int argc, char** argv) { LocalFree(argv_w); #endif - InitializeLogging(); - MicroProfileOnThreadCreate("EmuThread"); SCOPE_EXIT({ MicroProfileShutdown(); }); |