mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-07 23:45:12 +00:00
replace bs_t with rx::EnumBitSet
This commit is contained in:
parent
3f14b99f24
commit
2965aaf3e3
46 changed files with 600 additions and 809 deletions
|
|
@ -3254,7 +3254,7 @@ bool ppu_load_rel_exec(const ppu_rel_object& elf)
|
|||
|
||||
std::stable_sort(shdrs.begin(), shdrs.end(), [](auto& a, auto& b) -> bool
|
||||
{
|
||||
const bs_t<sh_flag> flags_a_has = a->sh_flags() - b->sh_flags();
|
||||
const rx::EnumBitSet<sh_flag> flags_a_has = a->sh_flags() - b->sh_flags();
|
||||
return flags_a_has.all_of(sh_flag::shf_execinstr);
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue