summaryrefslogtreecommitdiffstats
path: root/scene/resources/audio_stream_wav.cpp
diff options
context:
space:
mode:
authornikitalita <69168929+nikitalita@users.noreply.github.com>2024-10-31 21:33:17 -0500
committernikitalita <69168929+nikitalita@users.noreply.github.com>2024-11-01 06:11:28 -0500
commit08db8edbffb829d4a7547e2e2de9c1167e1c6bd6 (patch)
tree4007f43a39a96968917aa8d319545dc03e4d8325 /scene/resources/audio_stream_wav.cpp
parentef8d981267702de38ffc24136f9d823d31781c60 (diff)
downloadredot-engine-08db8edbffb829d4a7547e2e2de9c1167e1c6bd6.tar.gz
fix save to wav
Diffstat (limited to 'scene/resources/audio_stream_wav.cpp')
-rw-r--r--scene/resources/audio_stream_wav.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/audio_stream_wav.cpp b/scene/resources/audio_stream_wav.cpp
index f9787dde2e..539001bf25 100644
--- a/scene/resources/audio_stream_wav.cpp
+++ b/scene/resources/audio_stream_wav.cpp
@@ -624,7 +624,7 @@ Error AudioStreamWAV::save_to_wav(const String &p_path) {
}
String file_path = p_path;
- if (!(file_path.substr(file_path.length() - 4, 4) == ".wav")) {
+ if (file_path.substr(file_path.length() - 4, 4).to_lower() != ".wav") {
file_path += ".wav";
}