diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/megametrum-v0.1/ao_megametrum.c | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/src/megametrum-v0.1/ao_megametrum.c b/src/megametrum-v0.1/ao_megametrum.c index 4d9343e1..eaab9b50 100644 --- a/src/megametrum-v0.1/ao_megametrum.c +++ b/src/megametrum-v0.1/ao_megametrum.c @@ -20,7 +20,11 @@  void  beep(void)  { -	ao_beep_for(AO_BEEP_MID, AO_MS_TO_TICKS(2000)); +	ao_beep(AO_BEEP_MID); +	printf ("Hit a character to stop..."); flush(); +	getchar(); +	putchar('\n'); +	ao_beep(0);  }  const struct ao_cmds ao_mm_cmds[] = { | 
