- Updated README

- cosmetic changes to comments in snd.c and snd_dma.c
This commit is contained in:
Jamie Wilkinson 2002-04-13 03:27:39 +00:00
parent e90942f9b5
commit 9b81e4ff7f
3 changed files with 24 additions and 31 deletions

5
README
View file

@ -1,9 +1,8 @@
If you are checking this out from CVS, run the bootstrap command first to set
up configure. Then follow the instructions in INSTALL.
*** HARD HAT AREA ***
I am halfway through migrating the codebase to use autotools, so not everything
will build just yet. Please be patient.
Use --disable-asm on the configure line if you want to use the software
refreshers on i386, or better yet, fix the bug in the asm!
Note to developers: bsd/, irix/ and solaris/ are NO LONGER PERTINENT!
The relevant code was merged into src/ along with the linux/ subtree, so do

View file

@ -501,14 +501,6 @@ int SNDDMA_GetDMAPos(void) {
*/
void SNDDMA_Shutdown(void) {
printf ("SNDDMA_Shutdown\n");
#if 0
if (snd_inited)
{
close(audio_fd);
audio_fd = -1;
snd_inited = 0;
}
#endif
/* merged in from snd_irix.c -- jaq */
#ifdef __sgi
if (sgisnd_aport) {

View file

@ -1,23 +1,25 @@
/*
Copyright (C) 1997-2001 Id Software, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
/* $Id$
*
* main control for any streaming sound output device
*
* Copyright (C) 1997-2001 Id Software, Inc.
* Copyright (c) 2002 The Quakeforge Project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// snd_dma.c -- main control for any streaming sound output device
#include "client.h"
#include "snd_loc.h"