Skip to content

Commit

Permalink
Revert LADSPA_PATH_SEPERATOR
Browse files Browse the repository at this point in the history
  • Loading branch information
tresf committed Feb 9, 2025
1 parent de2dc8d commit 9747a90
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
7 changes: 0 additions & 7 deletions include/PluginFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,13 +106,6 @@ public slots:
static std::unique_ptr<PluginFactory> s_instance;
};

constexpr char LADSPA_PATH_SEPERATOR =
#ifdef LMMS_BUILD_WIN32
';';
#else
':';
#endif

//Short-hand function
LMMS_EXPORT PluginFactory* getPluginFactory();

Expand Down
9 changes: 9 additions & 0 deletions include/lmms_basics.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ using jo_id_t = uint32_t; // (unique) ID of a journalling object

constexpr ch_cnt_t DEFAULT_CHANNELS = 2;

constexpr char LADSPA_PATH_SEPERATOR =
#ifdef LMMS_BUILD_WIN32
';';
#else
':';
#endif



#define LMMS_STRINGIFY(s) LMMS_STR(s)
#define LMMS_STR(PN) #PN

Expand Down

0 comments on commit 9747a90

Please sign in to comment.