mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
AAX fix.
This commit is contained in:
parent
139e192871
commit
d2a52948fc
2 changed files with 2 additions and 1 deletions
|
|
@ -931,6 +931,7 @@ struct AAXClasses
|
|||
// This value needs to match the RTAS wrapper's Type ID, so that
|
||||
// the host knows that the RTAS/AAX plugins are equivalent.
|
||||
properties->AddProperty (AAX_eProperty_PlugInID_Native, 'jcaa' + channelConfigIndex);
|
||||
properties->AddProperty (AAX_eProperty_PlugInID_AudioSuite, 'jyaa' + channelConfigIndex);
|
||||
|
||||
check (desc.AddProcessProc_Native (algorithmProcessCallback, properties));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -105,7 +105,7 @@ public:
|
|||
const int y = settings->getIntValue ("windowY", -100);
|
||||
|
||||
if (x != -100 && y != -100)
|
||||
setBoundsConstrained (Rectangle<int> (x, y, getWidth(), getHeight()));
|
||||
setBoundsConstrained (juce::Rectangle<int> (x, y, getWidth(), getHeight()));
|
||||
else
|
||||
centreWithSize (getWidth(), getHeight());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue