Skip to content

Commit e09655b

Browse files
committed
Added numbering of plugins for the launcher.
1 parent 3faa923 commit e09655b

1 file changed

Lines changed: 16 additions & 10 deletions

File tree

src/main/meta/sampler.cpp

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,8 @@ namespace lsp
835835
"plugins/sampling/single/mono.xml",
836836
NULL,
837837
mono_plugin_port_groups,
838-
&sampler_bundle
838+
&sampler_bundle,
839+
2
839840
};
840841
LSP_REGISTER_METADATA(sampler_mono);
841842

@@ -866,7 +867,8 @@ namespace lsp
866867
"plugins/sampling/single/stereo.xml",
867868
NULL,
868869
stereo_plugin_port_groups,
869-
&sampler_bundle
870+
&sampler_bundle,
871+
1
870872
};
871873
LSP_REGISTER_METADATA(sampler_stereo);
872874

@@ -897,7 +899,8 @@ namespace lsp
897899
"plugins/sampling/multiple.xml",
898900
NULL,
899901
stereo_plugin_port_groups,
900-
&multisampler_bundle
902+
&multisampler_bundle,
903+
3
901904
};
902905
LSP_REGISTER_METADATA(multisampler_x12);
903906

@@ -928,7 +931,8 @@ namespace lsp
928931
"plugins/sampling/multiple.xml",
929932
NULL,
930933
stereo_plugin_port_groups,
931-
&multisampler_bundle
934+
&multisampler_bundle,
935+
4
932936
};
933937
LSP_REGISTER_METADATA(multisampler_x24);
934938

@@ -959,7 +963,8 @@ namespace lsp
959963
"plugins/sampling/multiple.xml",
960964
NULL,
961965
stereo_plugin_port_groups,
962-
&multisampler_bundle
966+
&multisampler_bundle,
967+
5
963968
};
964969
LSP_REGISTER_METADATA(multisampler_x48);
965970

@@ -990,7 +995,8 @@ namespace lsp
990995
"plugins/sampling/multiple.xml",
991996
NULL,
992997
sampler_x12_port_groups,
993-
&multisampler_bundle
998+
&multisampler_bundle,
999+
6
9941000
};
9951001
LSP_REGISTER_METADATA(multisampler_x12_do);
9961002

@@ -1021,7 +1027,8 @@ namespace lsp
10211027
"plugins/sampling/multiple.xml",
10221028
NULL,
10231029
sampler_x24_port_groups,
1024-
&multisampler_bundle
1030+
&multisampler_bundle,
1031+
7
10251032
};
10261033
LSP_REGISTER_METADATA(multisampler_x24_do);
10271034

@@ -1052,11 +1059,10 @@ namespace lsp
10521059
"plugins/sampling/multiple.xml",
10531060
NULL,
10541061
sampler_x48_port_groups,
1055-
&multisampler_bundle
1062+
&multisampler_bundle,
1063+
8
10561064
};
10571065
LSP_REGISTER_METADATA(multisampler_x48_do);
10581066

10591067
} /* namespace meta */
10601068
} /* namespace lsp */
1061-
1062-

0 commit comments

Comments
 (0)