From 25f8a5d0d991bc0a8f3653782d76d28dacdf8e1f Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 4 Jan 2016 17:37:54 -0700 Subject: [PATCH] Revert "adjust "racket-playsound.exe" return code" This reverts commit 26560240f15085d2a884cbc973043dc2235b076d. New implementation of `play-sound` doesn't need it. --- racket/src/native-libs/playsound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/racket/src/native-libs/playsound.c b/racket/src/native-libs/playsound.c index 8b3cce47b8..329fb3b50f 100644 --- a/racket/src/native-libs/playsound.c +++ b/racket/src/native-libs/playsound.c @@ -6,5 +6,5 @@ int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR ignored, int nCmdShow) { - return !PlaySoundW(GetCommandLineW(), NULL, SND_SYNC | SND_NODEFAULT); + return PlaySoundW(GetCommandLineW(), NULL, SND_SYNC); }