From a3917a88f6d0ebdad905535e5fdbc0e058249264 Mon Sep 17 00:00:00 2001 From: Laurent Date: Sat, 3 Jun 2023 15:06:00 +0200 Subject: [PATCH] Sound fix --- LeCountdown/Sound/Sound.swift | 2 +- LeCountdown/Views/Reusable/TimePickerView.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LeCountdown/Sound/Sound.swift b/LeCountdown/Sound/Sound.swift index c5a3a3c..4d9b7fa 100644 --- a/LeCountdown/Sound/Sound.swift +++ b/LeCountdown/Sound/Sound.swift @@ -193,7 +193,7 @@ enum Sound: Int, CaseIterable, Identifiable, Localized { case .tropicalForestMorning: return "QP01 0037 Tropical forest morning.wav" case .desertMorning: return "QP01 0130 Desert morning bird chorus.wav" case .wetland: return "QP01 0096 Wetland lake early morning.wav" - case .riparianZone: return "QP01 0096 Wetland lake early morning.wav" + case .riparianZone: return "QP01 0118 Riparian Zone thrush.wav" case .ESM_Ambient_Game_Menu_Soft_Wood: return "ESM_Ambient_Game_Menu_Soft_Wood_Confirm_1_Notification_Button_Settings_UI.wav" case .sbRose: return "rose1.mp3" case .trancosoBowl: return "trancoso_bowl1.mp3" diff --git a/LeCountdown/Views/Reusable/TimePickerView.swift b/LeCountdown/Views/Reusable/TimePickerView.swift index 0151b15..f62429f 100644 --- a/LeCountdown/Views/Reusable/TimePickerView.swift +++ b/LeCountdown/Views/Reusable/TimePickerView.swift @@ -110,7 +110,7 @@ struct TimePickerView: View { fileprivate func _computeDuration() { self.duration = Double(hours) * 3600.0 + Double(minutes) * 60.0 + Double(seconds) - Logger.log("duration = \(self.duration)") +// Logger.log("duration = \(self.duration)") } var body: some View {