Commit 9e53994a authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Warn the user if he is running the test in interactive mode but the

sound is turned off.
parent fbb33435
......@@ -527,6 +527,8 @@ static void wave_out_test_deviceOut(int device, double duration,
get_format_str(pwfx->wFormatTag),
flags & WAVE_FORMAT_DIRECT ? "WAVE_FORMAT_DIRECT" :
flags & WAVE_MAPPED ? "WAVE_MAPPED" : "");
if (sine && !volume)
trace("*** Warning the sound is muted, you will not hear the test\n");
/* Check that the position is 0 at start */
check_position(device, wout, 0, pwfx);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment