adjust "racket-playsound.exe" return code

This commit is contained in:
Matthew Flatt 2015-12-28 10:14:30 -06:00
parent d4ca825640
commit 26560240f1

View File

@ -6,5 +6,5 @@
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR ignored, int nCmdShow)
{
return PlaySoundW(GetCommandLineW(), NULL, SND_SYNC);
return !PlaySoundW(GetCommandLineW(), NULL, SND_SYNC | SND_NODEFAULT);
}