diff --git a/stepmania/src/arch/Sound/DSoundHelpers.cpp b/stepmania/src/arch/Sound/DSoundHelpers.cpp index b63a31f3fe..2cd7304f46 100644 --- a/stepmania/src/arch/Sound/DSoundHelpers.cpp +++ b/stepmania/src/arch/Sound/DSoundHelpers.cpp @@ -90,8 +90,13 @@ DSound::DSound() RageException::ThrowNonfatal(hr_ssprintf(hr, "DirectSoundCreate")); #ifndef _XBOX - DirectSoundEnumerate(EnumCallback, 0); - + static bool bShownInfo = false; + if( !bShownInfo ) + { + bShownInfo = true; + DirectSoundEnumerate(EnumCallback, 0); + } + /* Try to set primary mixing privileges */ hr = ds->SetCooperativeLevel( GetDesktopWindow(), DSSCL_PRIORITY ); #endif