mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
AudioCommon: Get initial sample rates from AudioInterface
This commit is contained in:
@ -293,11 +293,16 @@ bool IsPlaying()
|
||||
return (s_control.PSTAT == 1);
|
||||
}
|
||||
|
||||
unsigned int GetAIDSampleRate()
|
||||
u32 GetAIDSampleRate()
|
||||
{
|
||||
return s_aid_sample_rate;
|
||||
}
|
||||
|
||||
u32 GetAISSampleRate()
|
||||
{
|
||||
return s_ais_sample_rate;
|
||||
}
|
||||
|
||||
u32 Get32KHzSampleRate()
|
||||
{
|
||||
return SConfig::GetInstance().bWii ? 32000 : 32029;
|
||||
|
Reference in New Issue
Block a user