Skip to content

Commit

Permalink
Fix preprocessor macro for freebsd
Browse files Browse the repository at this point in the history
Typo in commit 46119ad, noticed by StanleySweet

Signed-off-by: Ralph Sennhauser <[email protected]>
  • Loading branch information
seragh committed Aug 15, 2024
1 parent b401de5 commit 4f96b54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FCollada/FUtils/FUPluginManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ ImplementObjectType(FUPlugin)

FUPluginManager::FUPluginManager(const fchar* _filter)
{
#if !defined(__FreeBSD) && !defined(__OpenBSD__)
#if !defined(__FreeBSD__) && !defined(__OpenBSD__)
fstring applicationFolderName = FUFileManager::GetApplicationFolderName();
LoadPluginsInFolderName(applicationFolderName, _filter);

Expand Down

0 comments on commit 4f96b54

Please sign in to comment.