Browse Source
Merge pull request #11408 from Kelebek1/fix_audio_node_id
[Audio] Fix node id index in DropVoices
pull/15/merge
liamwhite
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/audio_core/renderer/system.cpp
|
|
|
@ -778,7 +778,7 @@ u32 System::DropVoices(CommandBuffer& command_buffer, u32 estimated_process_time |
|
|
|
while (i < command_buffer.count) { |
|
|
|
const auto node_id{cmd->node_id}; |
|
|
|
const auto node_id_type{cmd->node_id >> 28}; |
|
|
|
const auto node_id_base{cmd->node_id & 0xFFF}; |
|
|
|
const auto node_id_base{(cmd->node_id >> 16) & 0xFFF}; |
|
|
|
|
|
|
|
// If the new estimated process time falls below the limit, we're done dropping.
|
|
|
|
if (estimated_process_time <= time_limit) { |
|
|
|
|