diff --git a/src/g_canvas.c b/src/g_canvas.c index 833ab73364219c0811d9ef4f6be682e3bc5c1f14..7a4b02814e6566ccb1db9dc2668c03c8e244f6e8 100644 --- a/src/g_canvas.c +++ b/src/g_canvas.c @@ -1419,17 +1419,19 @@ static void canvas_stop_dsp(void) /* DSP can be suspended before, and resumed after, operations which might affect the DSP chain. For example, we suspend before loading and resume afterward, so that DSP doesn't get resorted for every DSP object - int the patch. */ + in the patch. */ int canvas_suspend_dsp(void) { int rval = canvas_dspstate; + //fprintf(stderr,"canvas_suspend_dsp %d\n", rval); if (rval) canvas_stop_dsp(); return (rval); } void canvas_resume_dsp(int oldstate) { + //fprintf(stderr,"canvas_resume_dsp %d\n", oldstate); if (oldstate) canvas_start_dsp(); } diff --git a/src/s_inter.c b/src/s_inter.c index 913df89db3496275d1cb8b98604d3242864bb7c1..cdea5f169ab21a04ab01189208d57adb58d82160 100644 --- a/src/s_inter.c +++ b/src/s_inter.c @@ -1324,6 +1324,7 @@ void glob_quit(void *dummy) //let's try to cleanly remove invisible template canvases //if (garray_arraytemplatecanvas) canvas_free( (t_canvas *)garray_arraytemplatecanvas); //if (garray_floattemplatecanvas) canvas_free( (t_canvas *)garray_floattemplatecanvas); + canvas_suspend_dsp(); glob_closeall(0, 1); sys_vgui("exit\n"); if (!sys_nogui)