mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-17 17:28:00 -05:00
Merge pull request #2082 from FernandoS27/txq-stl
Fix TXQ not using the component mask.
This commit is contained in:
@ -981,6 +981,10 @@ union Instruction {
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
bool IsComponentEnabled(std::size_t component) const {
|
||||
return ((1ULL << component) & component_mask) != 0;
|
||||
}
|
||||
} txq;
|
||||
|
||||
union {
|
||||
|
Reference in New Issue
Block a user