You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In looking for an issue, I added a define for DEBUG in audio_portaudio.c. If this is defined, the following code will not compile, as err is not defined. Removing the err helps , but I am not sure this is the correct solution
void audio_wait (int a)
{
audio_flush(a);
#if DEBUG
text_color_set(DW_COLOR_DEBUG);
dw_printf ("audio_wait(): after sync, status=%d\n", err);
#endif
} /* end audio_wait */
The text was updated successfully, but these errors were encountered:
In looking for an issue, I added a define for DEBUG in audio_portaudio.c. If this is defined, the following code will not compile, as err is not defined. Removing the err helps , but I am not sure this is the correct solution
The text was updated successfully, but these errors were encountered: