Skip to content
This repository has been archived by the owner on Aug 22, 2022. It is now read-only.

Commit

Permalink
Wrong Plugin lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
sheldonrobinson committed Sep 20, 2019
1 parent d550c97 commit b51e8fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion M4GfxSIS.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{
"Name": "M4GfxSIS",
"Type": "Runtime",
"LoadingPhase": "PreLoadingScreen",
"LoadingPhase": "Default",
"WhitelistPlatforms" :
[
"Win64",
Expand Down
2 changes: 1 addition & 1 deletion Source/M4GfxSIS/Public/M4GfxSISBPLibrary.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ class UM4GfxSISBPLibrary : public UBlueprintFunctionLibrary
UFUNCTION(BlueprintPure, meta = (DisplayName = "Display System Information Field Value", Keywords = "M4GfxSIS System Information"), Category = "M4GfxSIS|Information")
static const FString DisplaySysInfoValue(UPARAM(ref) FSystemInfoValue& Value);

UFUNCTION(BlueprintPure, meta = (DisplayName = "Display System Information Propertues", Keywords = "M4GfxSIS System Information"), Category = "M4GfxSIS|Information")
UFUNCTION(BlueprintPure, meta = (DisplayName = "Display System Information Properties", Keywords = "M4GfxSIS System Information"), Category = "M4GfxSIS|Information")
static const FSystemInfoMap GetSysInfoPropertyMap(UPARAM(ref) FSystemInfo& SysInfo);
};
2 changes: 1 addition & 1 deletion Source/XInfoPlugin/Private/XInfoPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void FXInfoPluginModule::StartupModule()
// This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module

// Get the base directory of this plugin
FString BaseDir = IPluginManager::Get().FindPlugin("XInfoPlugin")->GetBaseDir();
FString BaseDir = IPluginManager::Get().FindPlugin("M4GfxSIS")->GetBaseDir();

// Add on the relative location of the third party dll and load it
FString LibraryPath;
Expand Down

0 comments on commit b51e8fb

Please sign in to comment.