Skip to content

Commit

Permalink
Merge branch 'master' into demangleLinux
Browse files Browse the repository at this point in the history
  • Loading branch information
nxtum authored Sep 18, 2024
2 parents 2599297 + 761d6d6 commit 0e968bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/plugins/Shell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ namespace PluginHost
string element;
while (all_paths->Next(element) == true) {
Core::File file(element.c_str());
if (file.Exists())
{
Core::Library resource(element.c_str());
if (file.Exists()) {

Core::Library resource = Core::ServiceAdministrator::Instance().LoadLibrary(element.c_str());
if (resource.IsLoaded())
result = Core::ServiceAdministrator::Instance().Instantiate(
resource,
Expand Down

0 comments on commit 0e968bc

Please sign in to comment.