summaryrefslogtreecommitdiff
path: root/comms/fldigi/files/patch-src_throb_throb.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comms/fldigi/files/patch-src_throb_throb.cxx')
-rw-r--r--comms/fldigi/files/patch-src_throb_throb.cxx20
1 files changed, 0 insertions, 20 deletions
diff --git a/comms/fldigi/files/patch-src_throb_throb.cxx b/comms/fldigi/files/patch-src_throb_throb.cxx
deleted file mode 100644
index ce464d2bd14b..000000000000
--- a/comms/fldigi/files/patch-src_throb_throb.cxx
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/throb/throb.cxx.orig 2013-03-28 13:27:03.683043974 -0400
-+++ src/throb/throb.cxx 2013-03-28 13:27:55.988221471 -0400
-@@ -37,6 +37,8 @@
- #include "fl_digi.h"
- #include "status.h"
-
-+#define MAX_TONES 15 // Highest used I noticed was 11
-+
- #undef CLAMP
- #define CLAMP(x,low,high) (((x)>(high))?(high):(((x)<(low))?(low):(x)))
-
-@@ -410,7 +412,7 @@
-
- void throb::rx(complex in)
- {
-- complex rxword[num_tones];
-+ complex rxword[MAX_TONES];
- int i, tone1, tone2, maxtone;
-
- symbol[symptr] = in;