From f7d08d33715e71250c8d3b35d6566a41fe41c378 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Fri, 6 May 2022 15:19:03 +0300 Subject: [PATCH] ELF: fix sh_flag bitset enum --- rpcs3/Loader/ELF.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rpcs3/Loader/ELF.h b/rpcs3/Loader/ELF.h index b7f8ab0331..69defb3e5f 100644 --- a/rpcs3/Loader/ELF.h +++ b/rpcs3/Loader/ELF.h @@ -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 };