Skip to content

Commit

Permalink
fix: LoadPlugin error message
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyTWF committed Aug 16, 2022
1 parent 0d23298 commit 5b74322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loader/loader/loader.cpp
Expand Up @@ -60,7 +60,7 @@ LoadPlugin(HINSTANCE pluginLibraryHandle, UKControllerPlugin::Windows::WinApiInt

if (!LoadPlugin) {
LogError("Cannot find LoadPlugin function in Core binary");
std::wstring message = L"Unable find UnloadPlugin function in Core Binary.\r\n\r\n";
std::wstring message = L"Unable find LoadPlugin function in Core Binary.\r\n\r\n";
message += L"Please contact the Web Services Department.";
DisplayLoaderError(windows, message);
return nullptr;
Expand Down

0 comments on commit 5b74322

Please sign in to comment.