From 6001ceff9f9383c4c3f04e056cd09b118d11b044 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Sat, 27 Apr 2013 23:00:18 +0200 Subject: Get rid of bundled beep --- src/common/text.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src/common/text.c') diff --git a/src/common/text.c b/src/common/text.c index da677c88..905a3ce9 100644 --- a/src/common/text.c +++ b/src/common/text.c @@ -2221,7 +2221,7 @@ sound_find_command (void) } void -sound_play (const char *file, gboolean quiet, gboolean hexchat_beep) +sound_play (const char *file, gboolean quiet) { char *buf; char *wavfile; @@ -2234,10 +2234,10 @@ sound_play (const char *file, gboolean quiet, gboolean hexchat_beep) } #ifdef WIN32 - /* check for fullpath; also use full path if hexchat_beep is TRUE, which should *only* happen when invoked by fe_beep() */ - if (hexchat_beep || file[0] == '\\' || (((file[0] >= 'A' && file[0] <= 'Z') || (file[0] >= 'a' && file[0] <= 'z')) && file[1] == ':')) + /* check for fullpath */ + if (file[0] == '\\' || (((file[0] >= 'A' && file[0] <= 'Z') || (file[0] >= 'a' && file[0] <= 'z')) && file[1] == ':')) #else - if (hexchat_beep || file[0] == '/') + if (file[0] == '/') #endif { wavfile = g_strdup (file); @@ -2280,7 +2280,9 @@ void sound_play_event (int i) { if (sound_files[i]) - sound_play (sound_files[i], FALSE, FALSE); + { + sound_play (sound_files[i], FALSE); + } } static void -- cgit 1.4.1