diff options
author | RedMser <redmser.jj2@gmail.com> | 2022-11-29 02:42:19 +0100 |
---|---|---|
committer | RedMser <redmser.jj2@gmail.com> | 2023-03-27 08:10:35 +0200 |
commit | ed960453b721e62e8e2c37a4695a78f7b0a862d8 (patch) | |
tree | 1608fce23ae15d7c0011336e741b70db99de2a52 /servers/audio | |
parent | 9b0bee860f4d53614c218d28c9c32f88cf8b5cff (diff) | |
download | redot-engine-ed960453b721e62e8e2c37a4695a78f7b0a862d8.tar.gz |
Make solving project setting errors easier
Show full project setting path in error messages.
Force filtering for advanced settings if filter is not empty.
Diffstat (limited to 'servers/audio')
-rw-r--r-- | servers/audio/audio_stream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/audio/audio_stream.cpp b/servers/audio/audio_stream.cpp index 32ee650f8d..70496ee65b 100644 --- a/servers/audio/audio_stream.cpp +++ b/servers/audio/audio_stream.cpp @@ -361,7 +361,7 @@ void AudioStreamPlaybackMicrophone::start(double p_from_pos) { } if (!GLOBAL_GET("audio/driver/enable_input")) { - WARN_PRINT("Need to enable Project settings > Audio > Enable Audio Input option to use capturing."); + WARN_PRINT("You must enable the project setting \"audio/driver/enable_input\" to use audio capture."); return; } |