load imgui config from disk only when creating dx instance.

This commit is contained in:
IcePixelx 2022-01-31 18:47:21 +01:00
parent 2037ffa1f2
commit 03b5f18435

View File

@ -404,7 +404,6 @@ HRESULT __stdcall Present(IDXGISwapChain* pSwapChain, UINT nSyncInterval, UINT n
g_bInitialized = true;
g_pSwapChain = pSwapChain;
g_pImGuiConfig->Load(); // Load ImGui configs.
}
DrawImGui();
@ -540,6 +539,7 @@ void HIDXGI::debugp()
DWORD __stdcall DXSwapChainWorker(LPVOID)
{
g_pImGuiConfig->Load(); // Load ImGui configs.
GetPresent();
InstallDXHooks();
return true;