shithub: choc

Download patch

ref: 38eb80a7dcb5a76b594d6dde1da630953c925005
parent: 002179525dbf79254f2d717c761b2bc120c5d62f
author: Simon Howard <fraggle@soulsphere.org>
date: Mon Jan 2 09:56:59 EST 2017

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.

--- a/pcsound/pcsound_win32.c
+++ b/pcsound/pcsound_win32.c
@@ -73,15 +73,11 @@
 
     // 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;