Audio: Whitespace adjustments

This commit is contained in:
MerryMage 2016-01-26 12:19:20 +00:00 committed by Sean Maas
parent 07840c0eab
commit 9f4d3a5db7
2 changed files with 3 additions and 3 deletions

View file

@ -252,7 +252,7 @@ void EnqueueBuffer(int channel_id, u16 buffer_id, void* data, int sample_count,
break; break;
} }
c.queue.emplace( Buffer { buffer_id, b, is_looping }); c.queue.emplace(Buffer{ buffer_id, b, is_looping });
if (c.queue.size() > 10) { if (c.queue.size() > 10) {
LOG_ERROR(Audio, "We have far far too many buffers enqueued on channel %i (%i of them)", channel_id, c.queue.size()); LOG_ERROR(Audio, "We have far far too many buffers enqueued on channel %i (%i of them)", channel_id, c.queue.size());
@ -340,4 +340,4 @@ ChannelStatus GetStatus(int channel_id) {
return ret; return ret;
} }
}; };

View file

@ -37,4 +37,4 @@ struct ChannelStatus {
ChannelStatus GetStatus(int channel_id); ChannelStatus GetStatus(int channel_id);
}; };