Mercurial > audio-send
comparison Alc/ALc.c @ 6:99df34265b40
disabled the user's ability to select backend since there is only one backend
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 25 Oct 2011 13:25:47 -0700 |
parents | 96298d83959c |
children | 63312ec4a2bf |
comparison
equal
deleted
inserted
replaced
5:ff36dfa1addb | 6:99df34265b40 |
---|---|
525 | 525 |
526 ReverbBoost *= aluPow(10.0f, GetConfigValueFloat("reverb", "boost", 0.0f) / | 526 ReverbBoost *= aluPow(10.0f, GetConfigValueFloat("reverb", "boost", 0.0f) / |
527 20.0f); | 527 20.0f); |
528 EmulateEAXReverb = GetConfigValueBool("reverb", "emulate-eax", AL_FALSE); | 528 EmulateEAXReverb = GetConfigValueBool("reverb", "emulate-eax", AL_FALSE); |
529 | 529 |
530 devs = GetConfigValue(NULL, "drivers", ""); | 530 // RLM: This was previously taken from the config file |
531 // where the user had their choice of backend | |
532 // for this special version of open-al the option is | |
533 // disabled since there is only the "send" device. | |
534 devs = "send"; | |
535 | |
531 //printf("these are the devices: %s\n", devs); | 536 //printf("these are the devices: %s\n", devs); |
532 | 537 |
533 if(devs[0]) | 538 if(devs[0]) |
534 { | 539 { |
535 int n; | 540 int n; |