summary refs log tree commit diff stats
path: root/src/common
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2013-04-16 11:32:58 +0200
committerBerke Viktor <bviktor@hexchat.org>2013-04-16 11:32:58 +0200
commitccc86016244aaec2d95ceca226ffb0115ef31871 (patch)
treece0b7d9c84e40629627ab326497fb1108e7bfc88 /src/common
parent7e2ae20ecf1a38a7f7890821a07e1a23fe96722d (diff)
Move beep to proper place
Diffstat (limited to 'src/common')
-rw-r--r--src/common/cfgfiles.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c
index 712f2bfa..e9486771 100644
--- a/src/common/cfgfiles.c
+++ b/src/common/cfgfiles.c
@@ -844,9 +844,9 @@ load_config (void)
 
 			buf = g_build_filename (get_xdir (), "sounds", "beep.wav", NULL);
 #ifdef WIN32	/* keep this in sync with fe-gtk.c! */
-			beepsrc = g_file_new_for_path (HEXCHATSHAREDIR G_DIR_SEPARATOR_S "share" G_DIR_SEPARATOR_S "beep.wav");
+			beepsrc = g_file_new_for_path (HEXCHATSHAREDIR G_DIR_SEPARATOR_S "share" G_DIR_SEPARATOR_S "sounds" G_DIR_SEPARATOR_S "beep.wav");
 #else
-			beepsrc = g_file_new_for_path (HEXCHATSHAREDIR G_DIR_SEPARATOR_S "hexchat" G_DIR_SEPARATOR_S "beep.wav");
+			beepsrc = g_file_new_for_path (HEXCHATSHAREDIR G_DIR_SEPARATOR_S "sounds" G_DIR_SEPARATOR_S "freedesktop" G_DIR_SEPARATOR_S "stereo" G_DIR_SEPARATOR_S "hexchat_beep.wav");
 #endif
 			beepdest = g_file_new_for_path (buf);