mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 21:37:58 -05:00
Pushed the requested sample rate instead of our fixed sample rate
This commit is contained in:
@ -48,10 +48,8 @@ private:
|
||||
void GetAudioRendererSampleRate(Kernel::HLERequestContext& ctx) {
|
||||
IPC::ResponseBuilder rb{ctx, 3};
|
||||
rb.Push(RESULT_SUCCESS);
|
||||
rb.Push<u32>(
|
||||
renderer->GetSampleRate()); // Switch uses the worker_params value, but we always
|
||||
// have a fixed sample rate so return that instead
|
||||
LOG_WARNING(Service_Audio, "(STUBBED) called");
|
||||
rb.Push<u32>(renderer->GetSampleRate());
|
||||
LOG_DEBUG(Service_Audio, "called");
|
||||
}
|
||||
|
||||
void GetAudioRendererSampleCount(Kernel::HLERequestContext& ctx) {
|
||||
|
Reference in New Issue
Block a user