From a012d56b0f230114de0e9b10e15023faa3c8a44c Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Thu, 10 Feb 2011 18:20:46 +0000 Subject: Sanitized ui sounds, removed button hover sound. --- src/client/playerview.cc | 6 ------ src/client/targeticonbutton.cc | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) (limited to 'src/client') diff --git a/src/client/playerview.cc b/src/client/playerview.cc index e942924..d5026ef 100644 --- a/src/client/playerview.cc +++ b/src/client/playerview.cc @@ -9,7 +9,6 @@ #include "core/info.h" #include "core/application.h" -#include "audio/audio.h" #include "ui/ui.h" #include "client/targeticonbutton.h" #include "client/playerview.h" @@ -102,7 +101,6 @@ void PlayerView::toggle_map() } map()->toggle(); - audio::play("ui/menu"); /* if (map()->visible() && chat()->visible() && chat()->small_view()) { chat()->raise(); @@ -136,7 +134,6 @@ void PlayerView::toggle_inventory() } inventory()->toggle(); - audio::play("ui/menu"); /* if (inventory()->visible() && chat()->visible() && chat()->small_view()) { chat()->raise(); @@ -173,7 +170,6 @@ void PlayerView::toggle_chat() chat()->set_small_view(false); chat()->toggle(); - audio::play("ui/menu"); } void PlayerView::toggle_chatbar() @@ -348,7 +344,6 @@ void PlayerView::draw() show_menu("main"); map()->hide(); chat()->hide(); - audio::play("ui/menu"); // hide other windows view_chat->hide(); @@ -360,7 +355,6 @@ void PlayerView::draw() // show the menu if there's no other window open view_entitymenu->show(); - audio::play("ui/menu"); } view_notify->set_size(width() - smallmargin * 3.0f - ui::UI::elementsize.width() * 1.5f, height() - smallmargin * 4.0f); diff --git a/src/client/targeticonbutton.cc b/src/client/targeticonbutton.cc index 1ef2da0..afc3838 100644 --- a/src/client/targeticonbutton.cc +++ b/src/client/targeticonbutton.cc @@ -23,7 +23,7 @@ bool TargetIconButton::on_keypress(const int key, const unsigned int modifier) if (key == 512 + SDL_BUTTON_LEFT) { if (enabled() && command().size() && targets::current()) { core::cmd() << "@" << command() << " " << targets::current_id() << std::endl; - audio::play("ui/button"); + audio::play("ui/clicked"); } return true; } -- cgit v1.2.3