mirror of
https://github.com/wiiu-env/homebrew_launcher.git
synced 2024-11-24 13:49:18 +01:00
Proper fix for the 500 sound issue.
This commit is contained in:
parent
8de7f2c6ec
commit
d346803f29
@ -216,7 +216,7 @@ SoundDecoder * SoundHandler::GetSoundDecoder(const u8 * sound, int length)
|
|||||||
|
|
||||||
void SoundHandler::executeThread()
|
void SoundHandler::executeThread()
|
||||||
{
|
{
|
||||||
// v2 sound lib can not properly end transition audio on old firmwares.
|
// v2 sound lib can not properly end transition audio on old firmwares
|
||||||
if (OS_FIRMWARE <= 410)
|
if (OS_FIRMWARE <= 410)
|
||||||
{
|
{
|
||||||
ProperlyEndTransitionAudio();
|
ProperlyEndTransitionAudio();
|
||||||
@ -227,9 +227,12 @@ void SoundHandler::executeThread()
|
|||||||
AXInitWithParams(params);
|
AXInitWithParams(params);
|
||||||
|
|
||||||
|
|
||||||
|
// The problem with last voice on 500 was caused by it having priority 0
|
||||||
|
// We would need to change this priority distribution if for some reason
|
||||||
|
// we would need MAX_DECODERS > Voice::PRIO_MAX
|
||||||
for(u32 i = 0; i < MAX_DECODERS; ++i)
|
for(u32 i = 0; i < MAX_DECODERS; ++i)
|
||||||
{
|
{
|
||||||
int priority = (MAX_DECODERS - 1 - i) * (Voice::PRIO_MAX - Voice::PRIO_MIN) / (MAX_DECODERS - 1);
|
int priority = (MAX_DECODERS - i) * Voice::PRIO_MAX / MAX_DECODERS;
|
||||||
voiceList[i] = new Voice(priority); // allocate voice 0 with highest priority
|
voiceList[i] = new Voice(priority); // allocate voice 0 with highest priority
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -263,15 +266,7 @@ void SoundHandler::executeThread()
|
|||||||
AXRegisterFrameCallback(NULL);
|
AXRegisterFrameCallback(NULL);
|
||||||
AXQuit();
|
AXQuit();
|
||||||
|
|
||||||
// deleting the last voice from the decoder produced DSI errors on 5.0.0 so we skip it
|
for(u32 i = 0; i < MAX_DECODERS; ++i)
|
||||||
// expecting same behaviour on every FW below 532
|
|
||||||
u32 delete_skip = 0;
|
|
||||||
if(OS_FIRMWARE < 532)
|
|
||||||
{
|
|
||||||
delete_skip = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
for(u32 i = 0; i < MAX_DECODERS - delete_skip; ++i)
|
|
||||||
{
|
{
|
||||||
delete voiceList[i];
|
delete voiceList[i];
|
||||||
voiceList[i] = NULL;
|
voiceList[i] = NULL;
|
||||||
|
@ -26,7 +26,7 @@ public:
|
|||||||
|
|
||||||
enum VoicePriorities
|
enum VoicePriorities
|
||||||
{
|
{
|
||||||
PRIO_MIN = 0,
|
PRIO_MIN = 1,
|
||||||
PRIO_MAX = 31
|
PRIO_MAX = 31
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user