Steve
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
3 additions and
4 deletions
-
ICSharpCode.Decompiler/Disassembler/ReflectionDisassembler.cs
|
|
@ -1886,7 +1886,7 @@ namespace ICSharpCode.Decompiler.Disassembler |
|
|
|
} |
|
|
|
} |
|
|
|
if ((val & ~tested) != 0) |
|
|
|
output.Write("flag({0:x4}) ", val & ~tested); |
|
|
|
output.Write("flags({0:x4}) ", val & ~tested); |
|
|
|
} |
|
|
|
|
|
|
|
void WriteEnum<T>(T enumValue, EnumNameCollection<T> enumNames) where T : struct |
|
|
@ -1906,8 +1906,7 @@ namespace ICSharpCode.Decompiler.Disassembler |
|
|
|
} |
|
|
|
if (val != 0) |
|
|
|
{ |
|
|
|
output.Write("flag({0:x4})", val); |
|
|
|
output.Write(' '); |
|
|
|
output.Write("flags({0:x4}) ", val); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
@ -2107,4 +2106,4 @@ namespace ICSharpCode.Decompiler.Disassembler |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |