From 38eb80a7dcb5a76b594d6dde1da630953c925005 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Mon, 2 Jan 2017 14:56:59 +0100 Subject: [PATCH] pcsound: Remove Win9x TODO(). We're not going to pretend to support Win9x any more so this isn't going to get done. Part of #834. --- pcsound/pcsound_win32.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pcsound/pcsound_win32.c b/pcsound/pcsound_win32.c index 136d9d56..91885f68 100644 --- a/pcsound/pcsound_win32.c +++ b/pcsound/pcsound_win32.c @@ -73,15 +73,11 @@ static int PCSound_Win32_Init(pcsound_callback_func callback_func) // Beep() ignores its arguments on win9x, so this driver will // not work there. - if (osvi.dwPlatformId != VER_PLATFORM_WIN32_NT) { - // TODO: Use _out() to write directly to the PC speaker on - // win9x: See PC/winsound.c in the Python standard library. - return 0; } - + // Start a thread to play sound. callback = callback_func;