Skip to content

Commit

Permalink
always check address library presence if requested
Browse files Browse the repository at this point in the history
  • Loading branch information
ianpatt committed Nov 23, 2023
1 parent 59a5bba commit 2d4215c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sfse/PluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ const char * PluginManager::checkPluginCompatibility(const SFSEPluginVersionData
versionIndependent = false;

// verify that address library is there to centralize error message
if(versionIndependent && (version.addressIndependence & SFSEPluginVersionData::kAddressIndependence_AddressLibrary))
if(version.addressIndependence & SFSEPluginVersionData::kAddressIndependence_AddressLibrary)
{
const char * result = checkAddressLibrary();
if(result) return result;
Expand Down

0 comments on commit 2d4215c

Please sign in to comment.