summaryrefslogtreecommitdiff
path: root/audio/nas/patches/patch-ad
diff options
context:
space:
mode:
Diffstat (limited to 'audio/nas/patches/patch-ad')
-rw-r--r--audio/nas/patches/patch-ad55
1 files changed, 55 insertions, 0 deletions
diff --git a/audio/nas/patches/patch-ad b/audio/nas/patches/patch-ad
new file mode 100644
index 00000000000..06c979d270e
--- /dev/null
+++ b/audio/nas/patches/patch-ad
@@ -0,0 +1,55 @@
+*** clients/audio/auedit/Graph.c.orig Wed Dec 6 10:11:03 1995
+--- clients/audio/auedit/Graph.c Sat Oct 5 11:37:52 1996
+***************
+*** 28,34 ****
+ */
+
+ #ifndef WIN32
+! #include <values.h>
+ #else /* WIN32 */
+ #define MAXSHORT 0x7fff
+ #endif /* WIN32 */
+--- 28,34 ----
+ */
+
+ #ifndef WIN32
+! #include <limits.h>
+ #else /* WIN32 */
+ #define MAXSHORT 0x7fff
+ #endif /* WIN32 */
+***************
+*** 322,329 ****
+
+ for (x = 0; x < (int) w->core.width; x++)
+ {
+! minY = MAXSHORT;
+! maxY = -MAXSHORT;
+
+ for (; (int) k == x && p < end; k += w->graph.hscale)
+ {
+--- 322,329 ----
+
+ for (x = 0; x < (int) w->core.width; x++)
+ {
+! minY = SHRT_MAX;
+! maxY = SHRT_MIN;
+
+ for (; (int) k == x && p < end; k += w->graph.hscale)
+ {
+***************
+*** 391,397 ****
+ GraphWidget w;
+ {
+ w->graph.vscale = (float) w->core.height / w->graph.numTracks /
+! (MAXSHORT - -MAXSHORT + 1);
+
+ w->graph.hscale = (float) ((int) w->core.width - 1) /
+ (w->graph.end - w->graph.start);
+--- 391,397 ----
+ GraphWidget w;
+ {
+ w->graph.vscale = (float) w->core.height / w->graph.numTracks /
+! (SHRT_MAX - SHRT_MIN + 1);
+
+ w->graph.hscale = (float) ((int) w->core.width - 1) /
+ (w->graph.end - w->graph.start);