mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-08 23:24:19 +00:00
AudioDeviceManager: Improve initialise() parameter naming
This commit is contained in:
parent
b1ec95db6e
commit
e890736965
1 changed files with 4 additions and 4 deletions
|
|
@ -163,10 +163,10 @@ public:
|
|||
This will attempt to open either a default audio device, or one that was
|
||||
previously saved as XML.
|
||||
|
||||
@param numInputChannelsNeeded the maximum number of input channels your app would like to
|
||||
@param maxNumInputChannelsNeeded the maximum number of input channels your app would like to
|
||||
use (the actual number of channels opened may be less than
|
||||
the number requested)
|
||||
@param numOutputChannelsNeeded the maximum number of output channels your app would like to
|
||||
@param maxNumOutputChannelsNeeded the maximum number of output channels your app would like to
|
||||
use (the actual number of channels opened may be less than
|
||||
the number requested)
|
||||
@param savedState either a previously-saved state that was produced
|
||||
|
|
@ -191,8 +191,8 @@ public:
|
|||
|
||||
@returns an error message if anything went wrong, or an empty string if it worked ok.
|
||||
*/
|
||||
String initialise (int numInputChannelsNeeded,
|
||||
int numOutputChannelsNeeded,
|
||||
String initialise (int maxNumInputChannelsNeeded,
|
||||
int maxNumOutputChannelsNeeded,
|
||||
const XmlElement* savedState,
|
||||
bool selectDefaultDeviceOnFailure,
|
||||
const String& preferredDefaultDeviceName = String(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue