Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automatic output mode selection #6

Open
martindevans opened this issue Sep 29, 2015 · 2 comments
Open

Automatic output mode selection #6

martindevans opened this issue Sep 29, 2015 · 2 comments
Labels

Comments

@martindevans
Copy link
Owner

By default the OutputMode of the sound system is automatically selected. However, this causes strange lockups of the sound system on windows 10 (it seems as though FMOD takes exclusive use of the sound device and never releases it).

Current hack to fix this is:

if (!SupersonicSound.Wrapper.Util.IsLinux)
    ll.Output = OutputMode.DirectSound;
@HakanL
Copy link
Contributor

HakanL commented Sep 29, 2015

I'm in Win10 and didn't experience any issue with the default/automatic selection. I ran without the IsLinux test first (just commented out the OutputMode) and it worked fine and didn't lock up the Windows sound device. At least not here on my machine.

@HakanL
Copy link
Contributor

HakanL commented Sep 29, 2015

I added the IsLinux check to leave it as-is in Windows because I figured there was a reason you picked DirectSound.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants