mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Vapor: Properly name sync&aling API
This commit is contained in:
parent
338cd09a4a
commit
53b951f6a9
3 changed files with 3 additions and 3 deletions
|
|
@ -110,7 +110,7 @@ public:
|
||||||
|
|
||||||
/* XXX this is only for testing */
|
/* XXX this is only for testing */
|
||||||
void set_bed_mix (bool on, std::string const& ref, int* cmap = NULL);
|
void set_bed_mix (bool on, std::string const& ref, int* cmap = NULL);
|
||||||
void set_sync_and_return (bool on);
|
void set_sync_and_align (bool on);
|
||||||
|
|
||||||
int set_state (XMLNode const&, int version);
|
int set_state (XMLNode const&, int version);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1922,7 +1922,7 @@ LuaBindings::common (lua_State* L)
|
||||||
|
|
||||||
.deriveWSPtrClass <SurroundReturn, Processor> ("SurroundReturn")
|
.deriveWSPtrClass <SurroundReturn, Processor> ("SurroundReturn")
|
||||||
.addFunction ("set_bed_mix", &SurroundReturn::set_bed_mix)
|
.addFunction ("set_bed_mix", &SurroundReturn::set_bed_mix)
|
||||||
.addFunction ("set_sync_and_return", &SurroundReturn::set_sync_and_return)
|
.addFunction ("set_sync_and_align", &SurroundReturn::set_sync_and_align)
|
||||||
.addFunction ("have_au_renderer", &SurroundReturn::have_au_renderer)
|
.addFunction ("have_au_renderer", &SurroundReturn::have_au_renderer)
|
||||||
.addFunction ("load_au_preset", &SurroundReturn::load_au_preset)
|
.addFunction ("load_au_preset", &SurroundReturn::load_au_preset)
|
||||||
.addFunction ("set_au_param", &SurroundReturn::set_au_param)
|
.addFunction ("set_au_param", &SurroundReturn::set_au_param)
|
||||||
|
|
|
||||||
|
|
@ -377,7 +377,7 @@ SurroundReturn::set_bed_mix (bool on, std::string const& ref, int* cmap)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
SurroundReturn::set_sync_and_return (bool on)
|
SurroundReturn::set_sync_and_align (bool on)
|
||||||
{
|
{
|
||||||
if (_sync_and_align == on) {
|
if (_sync_and_align == on) {
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue