diff options
author | sem <sem@FreeBSD.org> | 2005-03-06 07:17:30 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2005-03-06 07:17:30 +0800 |
commit | c5df1a47649cbedfb5e408d25627a88608de4800 (patch) | |
tree | e5c47fc44e62274a519f07665e4a03134422cafd /games | |
parent | 82542e5f17e84095e80d3acfe2f79280c90e3a9a (diff) | |
download | freebsd-ports-gnome-c5df1a47649cbedfb5e408d25627a88608de4800.tar.gz freebsd-ports-gnome-c5df1a47649cbedfb5e408d25627a88608de4800.tar.zst freebsd-ports-gnome-c5df1a47649cbedfb5e408d25627a88608de4800.zip |
- Add patch to fix sound for ALC650 AC97 Codec on ASUS A7V8X
Submitted by: glebius
Obtained from: mplayer
Diffstat (limited to 'games')
-rw-r--r-- | games/doomlegacy/Makefile | 1 | ||||
-rw-r--r-- | games/doomlegacy/files/patch-i_sound.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/games/doomlegacy/Makefile b/games/doomlegacy/Makefile index c6440a95e2d1..7b9fcd42ffd6 100644 --- a/games/doomlegacy/Makefile +++ b/games/doomlegacy/Makefile @@ -6,6 +6,7 @@ PORTNAME= doomlegacy PORTVERSION= 142 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/games/doomlegacy/files/patch-i_sound.c b/games/doomlegacy/files/patch-i_sound.c new file mode 100644 index 000000000000..d847bb12cff8 --- /dev/null +++ b/games/doomlegacy/files/patch-i_sound.c @@ -0,0 +1,11 @@ +--- sdl/i_sound.c.orig Mon Apr 19 01:02:24 2004 ++++ sdl/i_sound.c Sat Mar 5 23:04:27 2005 +@@ -118,7 +118,7 @@ + + #define SAMPLERATE 11025 // Hz + +-static int samplecount = 512; ++static int samplecount = 1024; + + static int lengths[NUMSFX]; // The actual lengths of all sound effects. + static unsigned int channelstep[NUM_CHANNELS]; // The channel step amount... |