Skip to content

Commit df623fa

Browse files
fix(ci): align embedded audio asset paths
1 parent 4b3f4c1 commit df623fa

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/audio.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ impl Default for AudioManager {
4141
impl SoundAsset {
4242
const fn bytes(self) -> &'static [u8] {
4343
match self {
44-
Self::ButtonClick => include_bytes!("../assets/sounds/button_click.ogg"),
45-
Self::Death => include_bytes!("../assets/sounds/death.wav"),
46-
Self::FreightMode => include_bytes!("../assets/sounds/fright_mode_short.wav"),
47-
Self::FruitEat => include_bytes!("../assets/sounds/fruit_eat.wav"),
48-
Self::GhostEat => include_bytes!("../assets/sounds/ghost_eat.wav"),
49-
Self::LevelComplete => include_bytes!("../assets/sounds/level_complete.wav"),
50-
Self::LevelStart => include_bytes!("../assets/sounds/level_start.wav"),
51-
Self::Music => include_bytes!("../assets/sounds/music.ogg"),
52-
Self::SmallPellet => include_bytes!("../assets/sounds/small_pellet2.wav"),
44+
Self::ButtonClick => include_bytes!("../assets/Sounds/button_click.ogg"),
45+
Self::Death => include_bytes!("../assets/Sounds/death.wav"),
46+
Self::FreightMode => include_bytes!("../assets/Sounds/fright_mode_short.wav"),
47+
Self::FruitEat => include_bytes!("../assets/Sounds/fruit_eat.wav"),
48+
Self::GhostEat => include_bytes!("../assets/Sounds/ghost_eat.wav"),
49+
Self::LevelComplete => include_bytes!("../assets/Sounds/level_complete.wav"),
50+
Self::LevelStart => include_bytes!("../assets/Sounds/level_start.wav"),
51+
Self::Music => include_bytes!("../assets/Sounds/music.ogg"),
52+
Self::SmallPellet => include_bytes!("../assets/Sounds/small_pellet2.wav"),
5353
}
5454
}
5555
}

0 commit comments

Comments
 (0)