Skip to content

Commit

Permalink
Use 'splash.wav' instead of 'splash.ogg' for Jumping Fish
Browse files Browse the repository at this point in the history
'splash.ogg' is more commonly associated with melting rather than falling into water (it also is rather annoying to constantly hear compared to the other sound).
  • Loading branch information
Rusty-Box authored Jul 10, 2023
1 parent 7439350 commit 6caba1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/badguy/fish_jumping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ FishJumping::collision_tile(uint32_t tile_attributes)
if (!m_frozen)
start_waiting();
m_col.set_movement(Vector(0, 0));
SoundManager::current()->play("sounds/splash.ogg", get_pos());
SoundManager::current()->play("sounds/splash.wav", get_pos());
}
}
if ((!(tile_attributes & Tile::WATER) || m_frozen) && (tile_attributes & Tile::HURTS)) {
Expand Down

0 comments on commit 6caba1d

Please sign in to comment.