mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Enable early logs on Windows (just stuff them in the thread queue)
This commit is contained in:
parent
3b463446ab
commit
4e9e767e41
1 changed files with 2 additions and 1 deletions
|
@ -954,6 +954,8 @@ int WINAPI WinMain(HINSTANCE _hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLin
|
|||
}
|
||||
}
|
||||
|
||||
// This will be overridden by the actual config. But we do want to log during startup.
|
||||
g_Config.bEnableLogging = true;
|
||||
LogManager::Init(&g_Config.bEnableLogging);
|
||||
|
||||
// On Win32 it makes more sense to initialize the system directories here
|
||||
|
@ -962,7 +964,6 @@ int WINAPI WinMain(HINSTANCE _hInstance, HINSTANCE hPrevInstance, LPSTR szCmdLin
|
|||
InitMemstickDirectory();
|
||||
CreateSysDirectories();
|
||||
|
||||
|
||||
// Load config up here, because those changes below would be overwritten
|
||||
// if it's not loaded here first.
|
||||
g_Config.SetSearchPath(GetSysDirectory(DIRECTORY_SYSTEM));
|
||||
|
|
Loading…
Add table
Reference in a new issue