diff --git a/resources/sounds/amb/relaxed.ogg b/resources/sounds/amb/relaxed.ogg new file mode 100644 index 0000000..b153791 Binary files /dev/null and b/resources/sounds/amb/relaxed.ogg differ diff --git a/resources/sounds/amb/relaxed.wav b/resources/sounds/amb/relaxed.wav deleted file mode 100644 index e0b706d..0000000 Binary files a/resources/sounds/amb/relaxed.wav and /dev/null differ diff --git a/src/effects/sound.rs b/src/effects/sound.rs index 1a9f972..1f8cb40 100644 --- a/src/effects/sound.rs +++ b/src/effects/sound.rs @@ -75,7 +75,7 @@ pub fn replace_ambience(app: &mut App, sound: &Sound) { pub fn init_sounds(app: &mut App) { let sound_data: &[(&str, &[u8], AudioType)] = &[ // (key, file_path, audiotype) - ("a_relax", include_bytes!("../../resources/sounds/amb/relaxed.wav"), AudioType::Ambient), + ("a_relax", include_bytes!("../../resources/sounds/amb/relaxed.ogg"), AudioType::Ambient), ("d_blocked1", include_bytes!("../../resources/sounds/door/blocked1.wav"), AudioType::SFX), ("d_blocked2", include_bytes!("../../resources/sounds/door/blocked2.wav"), AudioType::SFX), ("d_blocked3", include_bytes!("../../resources/sounds/door/blocked3.wav"), AudioType::SFX),