Revert "adjust "racket-playsound.exe" return code"

This reverts commit 26560240f1.

New implementation of `play-sound` doesn't need it.
This commit is contained in:
Matthew Flatt 2016-01-04 17:37:54 -07:00
parent 4b266f1ff2
commit 25f8a5d0d9

View File

@ -6,5 +6,5 @@
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR ignored, int nCmdShow) 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);
} }