*** 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 #else /* WIN32 */ #define MAXSHORT 0x7fff #endif /* WIN32 */ --- 28,34 ---- */ #ifndef WIN32 ! #include #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);