From b2b736abc2569ab5d8199da666aef8d8394844a0 Mon Sep 17 00:00:00 2001 From: Alex Barney Date: Mon, 1 Jul 2019 21:39:22 -0500 Subject: Misc cleanup (#708) * Fix typos * Remove unneeded using statements * Enforce var style more * Remove redundant qualifiers * Fix some indentation * Disable naming warnings on files with external enum names * Fix build * Mass find & replace for comments with no spacing * Standardize todo capitalization and for/if spacing --- Ryujinx.Audio/Renderers/DummyAudioOut.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.Audio/Renderers/DummyAudioOut.cs') diff --git a/Ryujinx.Audio/Renderers/DummyAudioOut.cs b/Ryujinx.Audio/Renderers/DummyAudioOut.cs index 5d6be3a3..56ae5d4f 100644 --- a/Ryujinx.Audio/Renderers/DummyAudioOut.cs +++ b/Ryujinx.Audio/Renderers/DummyAudioOut.cs @@ -32,7 +32,7 @@ namespace Ryujinx.Audio { int trackId; - if(!m_TrackIds.TryDequeue(out trackId)) + if (!m_TrackIds.TryDequeue(out trackId)) { trackId = ++lastTrackId; } @@ -57,7 +57,7 @@ namespace Ryujinx.Audio { m_Buffers.Enqueue(bufferTag); - if(m_ReleaseCallbacks.TryGetValue(trackID, out var callback)) + if (m_ReleaseCallbacks.TryGetValue(trackID, out var callback)) { callback?.Invoke(); } -- cgit v1.2.3