mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Move mixrate and latency definition to AudioServer
Each driver used to define the (same) project settings value, but the
setting names are not driver specific. Ovverriding is still possible via
platform tags.
(cherry picked from commit 90c7102b51)
This commit is contained in:
parent
6d1ddf7eb1
commit
92031098bf
11 changed files with 24 additions and 21 deletions
|
|
@ -70,8 +70,8 @@ void AudioDriverJavaScript::process_capture(float sample) {
|
|||
|
||||
Error AudioDriverJavaScript::init() {
|
||||
|
||||
int mix_rate = GLOBAL_DEF_RST("audio/mix_rate", DEFAULT_MIX_RATE);
|
||||
int latency = GLOBAL_DEF_RST("audio/output_latency", DEFAULT_OUTPUT_LATENCY);
|
||||
int mix_rate = GLOBAL_GET("audio/mix_rate");
|
||||
int latency = GLOBAL_GET("audio/output_latency");
|
||||
|
||||
/* clang-format off */
|
||||
EM_ASM({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue