Fix mismatched function signature
This commit is contained in:
parent
c7db9656a2
commit
b40e8f4476
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ void sfizz_lv2_ccmap_free(sfizz_lv2_ccmap *ccmap)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
LV2_URID sfizz_lv2_ccmap_map(sfizz_lv2_ccmap *ccmap, int cc)
|
LV2_URID sfizz_lv2_ccmap_map(const sfizz_lv2_ccmap *ccmap, int cc)
|
||||||
{
|
{
|
||||||
LV2_URID urid = 0;
|
LV2_URID urid = 0;
|
||||||
if (cc >= 0 && cc < sfz::config::numCCs)
|
if (cc >= 0 && cc < sfz::config::numCCs)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue