mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 18:47:57 -05:00
stream: Preserve enum class type in GetState()
Preserves the meaning/type-safetiness of the stream state instead of making it an opaque u32. This makes it usable for other things outside of the service HLE context.
This commit is contained in:
@ -79,7 +79,7 @@ u32 AudioRenderer::GetMixBufferCount() const {
|
||||
return worker_params.mix_buffer_count;
|
||||
}
|
||||
|
||||
u32 AudioRenderer::GetState() const {
|
||||
Stream::State AudioRenderer::GetStreamState() const {
|
||||
return stream->GetState();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user