mirror of
https://github.com/godotengine/godot.git
synced 2025-11-03 15:11:19 +00:00
Move mix_rate, ouput_latency to AudioDriverManager
Each driver used to define the (same) project settings values `audio/mix_rate` and `audio/output_latency`, but the setting names are not driver specific. Overriding is still possible via platform tags.
This commit is contained in:
parent
245c179bd3
commit
90c7102b51
11 changed files with 24 additions and 21 deletions
|
|
@ -182,6 +182,9 @@ int AudioDriverManager::get_driver_count() {
|
|||
|
||||
void AudioDriverManager::initialize(int p_driver) {
|
||||
GLOBAL_DEF_RST("audio/enable_audio_input", false);
|
||||
GLOBAL_DEF_RST("audio/mix_rate", DEFAULT_MIX_RATE);
|
||||
GLOBAL_DEF_RST("audio/output_latency", DEFAULT_OUTPUT_LATENCY);
|
||||
|
||||
int failed_driver = -1;
|
||||
|
||||
// Check if there is a selected driver
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue