nou: ruidet per a quan acabes de posar el nom

This commit is contained in:
2025-09-25 18:18:39 +02:00
parent 7a8d66c29d
commit e4532fcef2
5 changed files with 2 additions and 1 deletions

View File

@@ -48,6 +48,7 @@ SOUND|${PREFIX}/data/sound/item_drop.wav
SOUND|${PREFIX}/data/sound/item_pickup.wav SOUND|${PREFIX}/data/sound/item_pickup.wav
SOUND|${PREFIX}/data/sound/jump.wav SOUND|${PREFIX}/data/sound/jump.wav
SOUND|${PREFIX}/data/sound/logo.wav SOUND|${PREFIX}/data/sound/logo.wav
SOUND|${PREFIX}/data/sound/name_input_accept.wav
SOUND|${PREFIX}/data/sound/notify.wav SOUND|${PREFIX}/data/sound/notify.wav
SOUND|${PREFIX}/data/sound/player_collision.wav SOUND|${PREFIX}/data/sound/player_collision.wav
SOUND|${PREFIX}/data/sound/power_ball_explosion.wav SOUND|${PREFIX}/data/sound/power_ball_explosion.wav

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1499,7 +1499,7 @@ void Game::handleNameInput(const std::shared_ptr<Player> &player) {
} }
player->setInput(Input::Action::START); player->setInput(Input::Action::START);
player->setPlayingState(Player::State::SHOWING_NAME); player->setPlayingState(Player::State::SHOWING_NAME);
playSound("service_menu_select.wav"); playSound("name_input_accept.wav");
updateHiScoreName(); updateHiScoreName();
} }
} }