mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
fix: revert d3d11 GShade workaround, not reliable
This commit is contained in:
parent
ca7d051c39
commit
fcf7140293
2 changed files with 2 additions and 1 deletions
|
|
@ -176,6 +176,7 @@ namespace Dalamud.Game
|
|||
if (!dalamud.IsReady)
|
||||
dalamud.LoadTier2();
|
||||
|
||||
// Plugins expect the interface to be available and ready, so we need to wait with plugins until we have init'd ImGui
|
||||
if (!dalamud.IsLoadedPluginSystem && Service<InterfaceManager>.GetNullable()?.IsReady == true)
|
||||
dalamud.LoadTier3();
|
||||
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@ namespace Dalamud.Game.Internal.DXGI
|
|||
var modules = Process.GetCurrentProcess().Modules;
|
||||
foreach (ProcessModule processModule in modules)
|
||||
{
|
||||
if (processModule.FileName != null && (processModule.FileName.EndsWith("game\\dxgi.dll") || processModule.FileName.EndsWith("game\\d3d11.dll")))
|
||||
if (processModule.FileName != null && processModule.FileName.EndsWith("game\\dxgi.dll"))
|
||||
{
|
||||
// reshade master@4232872 RVA
|
||||
// var p = processModule.BaseAddress + 0x82C7E0; // DXGISwapChain::Present
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue