aboutsummaryrefslogtreecommitdiff
path: root/Source/NVIDIAGfeSDK/Private/FNVIDIAGfeSDK.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/NVIDIAGfeSDK/Private/FNVIDIAGfeSDK.cpp')
-rw-r--r--Source/NVIDIAGfeSDK/Private/FNVIDIAGfeSDK.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/NVIDIAGfeSDK/Private/FNVIDIAGfeSDK.cpp b/Source/NVIDIAGfeSDK/Private/FNVIDIAGfeSDK.cpp
index 5566ab7..8464b9b 100644
--- a/Source/NVIDIAGfeSDK/Private/FNVIDIAGfeSDK.cpp
+++ b/Source/NVIDIAGfeSDK/Private/FNVIDIAGfeSDK.cpp
@@ -10,6 +10,7 @@
#include "NVIDIAGfeSDKPrivatePCH.h"
#include "Runtime/Core/Public/Misc/Paths.h"
#include "Runtime/Core/Public/Windows/WindowsPlatformProcess.h"
+#include "IPluginManager.h"
#include "gfesdk/sdk_types.h"
@@ -49,9 +50,9 @@ void FNVIDIAGfeSDK::StartupModule()
#endif // PLATFORM_WINDOWS
// Get the base directory of this plugin
- const FString PluginPath = FString(FPaths::EnginePluginsDir());
+ const FString PluginPath = IPluginManager::Get().FindPlugin(TEXT("NVIDIAGfeSDK"))->GetBaseDir();
- FString RootDllPath = PluginPath / FString::Printf(TEXT("Runtime/NVIDIA/GfeSDK/ThirdParty/NVIDIAGfeSDK/redist/")) / WinDir;
+ FString RootDllPath = PluginPath / FString::Printf(TEXT("ThirdParty/NVIDIAGfeSDK/redist/")) / WinDir;
FPlatformProcess::PushDllDirectory(*RootDllPath);
LibHandle = FPlatformProcess::GetDllHandle(*(RootDllPath + "GfeSDK.dll"));