Browse Source
Merge pull request #1258 from tgsm/fix-sdl-logging
yuzu-cmd: fix SDL logging
pull/15/merge
bunnei
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
2 deletions
-
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(); }); |
|
|
|
|
|
|
|
|