Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 536d5d3

Browse files
committed
Call asa_done() in goaway().
1 parent e8f305a commit 536d5d3

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Python/pythonmain.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
int use_stdwin;
1616
#endif
1717

18+
#ifdef USE_AUDIO
19+
#include "asa.h"
20+
#endif
21+
1822
extern char *getenv();
1923

2024
#include "PROTO.h"
@@ -177,6 +181,9 @@ goaway(sts)
177181
if (use_stdwin)
178182
wdone();
179183
#endif
184+
#ifdef USE_AUDIO
185+
asa_done();
186+
#endif
180187
#ifdef THINK_C
181188
#ifndef TRACE_REFS
182189
/* Avoid 'click mouse to continue' in Lightspeed C */

0 commit comments

Comments
 (0)