Skip to content

Commit

Permalink
[ci] Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Mar 29, 2024
1 parent b443e65 commit 91fdc53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/ossia-max/src/remote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,21 +141,21 @@ void remote::assist(remote* x, void* b, long m, long a, char* s)
{
if(m == ASSIST_INLET)
{
sprintf(s, "Remote input", a);
sprintf(s, "Remote input");
}
else
{
switch(a)
{
case 0:
sprintf(
s, "Remote parameter deferred value (with set prefix for UI connection)", a);
s, "Remote parameter deferred value (with set prefix for UI connection)");
break;
case 1:
sprintf(s, "Remote parameter value", a);
sprintf(s, "Remote parameter value");
break;
case 2:
sprintf(s, "Dumpout", a);
sprintf(s, "Dumpout");
break;
default:
break;
Expand Down
2 changes: 1 addition & 1 deletion src/ossia/preset/cue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class OSSIA_EXPORT namespace_selection : Nano::Observer


ossia::net::device_base* dev{};
std::unordered_set<ossia::net::node_base*> m_selection;
ossia::hash_set<ossia::net::node_base*> m_selection;
};

class OSSIA_EXPORT cues// : public namespace_selection
Expand Down

0 comments on commit 91fdc53

Please sign in to comment.