mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-02 22:59:59 +01:00
ELF: fix sh_flag bitset enum
This commit is contained in:
parent
02d22dca95
commit
f7d08d3371
|
|
@ -49,9 +49,9 @@ enum class sec_type : u32
|
|||
|
||||
enum class sh_flag : u32
|
||||
{
|
||||
shf_write = 1,
|
||||
shf_alloc = 2,
|
||||
shf_execinstr = 4,
|
||||
shf_write,
|
||||
shf_alloc,
|
||||
shf_execinstr,
|
||||
|
||||
__bitset_enum_max
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue