We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f31e56 commit 17a0b0cCopy full SHA for 17a0b0c
OptiScaler/inputs/FG/DLSSG_Mod.h
@@ -70,7 +70,11 @@ class DLSSGMod
70
71
// set early so the hooks know
72
State::Instance().NukemsMFG = true;
73
- _dll = NtdllProxy::LoadLibraryExW_Ldr(dllPath.c_str(), NULL, 0);
+ {
74
+ // Lets the MFG mod provide fakenvapi
75
+ ScopedSkipSpoofing skipSpoofing {};
76
+ _dll = NtdllProxy::LoadLibraryExW_Ldr(dllPath.c_str(), NULL, 0);
77
+ }
78
79
if (_dll != nullptr)
80
{
0 commit comments