From e209e55e5921e9ccaf1f713aa5010ddf1cb1c2d8 Mon Sep 17 00:00:00 2001 From: Arnavion Date: Sat, 13 Sep 2014 00:23:44 -0700 Subject: Use PlaySoundW to play sounds on Windows. Fixes #1133 --- src/fe-gtk/fe-gtk.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/fe-gtk') diff --git a/src/fe-gtk/fe-gtk.c b/src/fe-gtk/fe-gtk.c index 3c97a904..4b7d916f 100644 --- a/src/fe-gtk/fe-gtk.c +++ b/src/fe-gtk/fe-gtk.c @@ -656,10 +656,11 @@ void fe_beep (session *sess) { #ifdef WIN32 - if (!PlaySound ("Notification.IM", NULL, SND_ALIAS|SND_ASYNC)) + /* Play the "Instant Message Notification" system sound + */ + if (!PlaySoundW (L"Notification.IM", NULL, SND_ALIAS | SND_ASYNC)) { - /* This is really just a fallback attempt, may or may not work on new Windows releases, especially on x64. - * You should set up the "Instant Message Notification" system sound instead, supported on Vista and up. + /* The user does not have the "Instant Message Notification" sound set. Fall back to system beep. */ Beep (1000, 50); } -- cgit 1.4.1