Add the mixer change from issue 1479 (use sleep(1) instead of cpu yield)

Fix aram handling in wii mode - was doing strange things with aram AND mem2 space - only mem2 exists on wii. Let me know if this breaks anything...
Fix Wii BS2 HLE - don't zero out bytes 6 and 7
Thanks to skidau for finding the ssbb error cause :)
Fixes issue 303
Fixes issue 1479

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4687 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Shawn Hoffman
2009-12-13 07:42:15 +00:00
parent 5f47aa7bb1
commit 4fe3e46725
4 changed files with 58 additions and 76 deletions

View File

@ -108,7 +108,7 @@ void CMixer::PushSamples(short *samples, int num_stereo_samples, int core_sample
return;
}
soundStream->Update();
Common::YieldCPU();
SLEEP(1);
}
// -----------------------------------------------------------------------