commit 38eb80a7dcb5a76b594d6dde1da630953c925005
Author: Simon Howard <fraggle@soulsphere.org>
AuthorDate: Mon Jan 2 14:56:59 2017 +0100
Commit: Simon Howard <fraggle@soulsphere.org>
CommitDate: Mon Jan 2 14:56:59 2017 +0100
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;