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

Problems with FMOD sound system #1

Open
arvidfm opened this issue Apr 14, 2014 · 0 comments
Open

Problems with FMOD sound system #1

arvidfm opened this issue Apr 14, 2014 · 0 comments
Labels

Comments

@arvidfm
Copy link
Owner

arvidfm commented Apr 14, 2014

Initially, Fiend was built on a ten year old version of FMOD. I've done a crude port to the latest stable version of FMOD Ex, however, it's not working yet. While the code does compile, the initalization fails at init_fiend():

FMOD_RESULT result = FMOD_System_Create(&fmod_system);
printf("Create: %d\n", result);
result = FMOD_System_Init(fmod_system, 100, FMOD_INIT_NORMAL, 0);
printf("Init: %d\n", result);

While FMOD_System_Create works, FMOD_System_Init returns error code 62, which I believe was FMOD_ERR_OUTPUT_INIT ("Error initializing output device"). Because of this I've been forced to circumvent sound-related functions simply to get Fiend working. This includes manually setting sound_is_on to 0, and commenting stop_all_sounds() at link.c and update_sound() at main.c.

@arvidfm arvidfm added the bug label Apr 14, 2014
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

1 participant