Skip to content

Commit

Permalink
Changed channel from /dreams to /notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimau committed Oct 8, 2020
1 parent a7ef96d commit 3b10ec8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Binary file modified binaries/midi2osc.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ int min(int a,int b) { return (a<b)?a:b; }
int max(int a,int b) { return (a>b)?a:b; }
int clamp(int x, int a, int b) { return min(max(x,a),b); }
struct Message {
// "/dreams\0" - 8
// "/notes\0\0" - 8
// ",m\0\0" - 4
char header[12]="/dreams\0,m\0";
char header[12]="/notes\0\0,m\0";
unsigned char deviceidx=0;
unsigned char msg=0;
unsigned char data1=0;
Expand Down
8 changes: 4 additions & 4 deletions midi2osc2.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,26 +28,26 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<PlatformToolset>v142</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
Expand Down

0 comments on commit 3b10ec8

Please sign in to comment.