summaryrefslogtreecommitdiff
path: root/src/audio_core/audio_renderer.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-09-08 16:02:58 -0400
committerGravatar GitHub2018-09-08 16:02:58 -0400
commit3d9776f36adc34ea75f5f7ca064c2708e100eecc (patch)
treeebc5d8aed46027f96dc5ea2ecd1381171f0c964c /src/audio_core/audio_renderer.h
parentMerge pull request #1246 from degasus/instanced_rendering (diff)
parentaudio_renderer: Rename AudioOut instance to audio_out (diff)
downloadyuzu-3d9776f36adc34ea75f5f7ca064c2708e100eecc.tar.gz
yuzu-3d9776f36adc34ea75f5f7ca064c2708e100eecc.tar.xz
yuzu-3d9776f36adc34ea75f5f7ca064c2708e100eecc.zip
Merge pull request #1267 from MerryMage/audio_out
audio_renderer: Rename AudioOut instance to audio_out
Diffstat (limited to 'src/audio_core/audio_renderer.h')
-rw-r--r--src/audio_core/audio_renderer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/audio_renderer.h b/src/audio_core/audio_renderer.h
index eba67f28e..6d069d693 100644
--- a/src/audio_core/audio_renderer.h
+++ b/src/audio_core/audio_renderer.h
@@ -204,7 +204,7 @@ private:
204 AudioRendererParameter worker_params; 204 AudioRendererParameter worker_params;
205 Kernel::SharedPtr<Kernel::Event> buffer_event; 205 Kernel::SharedPtr<Kernel::Event> buffer_event;
206 std::vector<VoiceState> voices; 206 std::vector<VoiceState> voices;
207 std::unique_ptr<AudioCore::AudioOut> audio_core; 207 std::unique_ptr<AudioCore::AudioOut> audio_out;
208 AudioCore::StreamPtr stream; 208 AudioCore::StreamPtr stream;
209}; 209};
210 210