Skip to content

Commit

Permalink
v1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
vareille committed Apr 24, 2021
1 parent b0accbd commit 7e5c8fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion toot.c
Expand Up @@ -247,7 +247,7 @@ void toot(float aFrequency_Hz, int aLength_ms)
#ifdef _WIN32
if (toot_verbose) printf("windows Beep %dHz %dms\n", (int)aFrequency_Hz, aLength_ms);
if (windowsVersion() > 5) Beep((DWORD)aFrequency_Hz, aLength_ms);
else MessageBeep(-1);
else MessageBeep(MB_OK);
#else /* UNIX */

if ( pactlPresent() )
Expand Down

0 comments on commit 7e5c8fd

Please sign in to comment.