mirror of
https://github.com/yuzu-emu/yuzu-mainline.git
synced 2025-09-04 11:01:16 +00:00
"Merge Tagged PR 11408"
This commit is contained in:
parent
2f18fa5cd1
commit
62e98cc13d
|
@ -778,7 +778,7 @@ u32 System::DropVoices(CommandBuffer& command_buffer, u32 estimated_process_time
|
||||||
while (i < command_buffer.count) {
|
while (i < command_buffer.count) {
|
||||||
const auto node_id{cmd->node_id};
|
const auto node_id{cmd->node_id};
|
||||||
const auto node_id_type{cmd->node_id >> 28};
|
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 the new estimated process time falls below the limit, we're done dropping.
|
||||||
if (estimated_process_time <= time_limit) {
|
if (estimated_process_time <= time_limit) {
|
||||||
|
|
Loading…
Reference in a new issue