diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 14:12:36 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-28 14:12:36 +0000 |
commit | 6df3e23245b2c3793f24e4c42dd330d59419494c (patch) | |
tree | e86901dd11e5a970cf6211165d2b26dbe637e186 /audio/s3mod/files/patch-ai | |
parent | lang/squeak: Claimed fix for PowerPC (diff) |
Rename audio/ patch-xy patches to reflect the files they modify.
Diffstat (limited to 'audio/s3mod/files/patch-ai')
-rw-r--r-- | audio/s3mod/files/patch-ai | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/audio/s3mod/files/patch-ai b/audio/s3mod/files/patch-ai deleted file mode 100644 index f31016c94442..000000000000 --- a/audio/s3mod/files/patch-ai +++ /dev/null @@ -1,24 +0,0 @@ ---- mod.c.orig Sun Oct 22 04:13:23 1995 -+++ mod.c Sat Jan 27 15:04:15 2001 -@@ -11,7 +11,7 @@ - - - #ifdef GUS --#include <sys/ultrasound.h> -+#include <machine/ultrasound.h> - #include "gus.h" - #endif /* GUS */ - -@@ -130,8 +130,10 @@ - /* Portamento Down */ - if ((track->period += track->port_down) > track->period_high_limit) - track->period = track->period_high_limit; -- track->pitch = track->finetune_rate / track->period; -- -+ if (track->period != 0) -+ track->pitch = track->finetune_rate / track->period; -+ else -+ track->pitch = 1; - track->playing_period = track->period; - } - |