mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-18 13:54:46 +00:00
.clang-format
: break short enums, TypenameMacros (#1671)
* IndentPPDirectives: AfterHash * AllowShortEnumsOnASingleLine: false * IndentPPDirectives: BeforeHash * format * format * TypenameMacros: [BAD_RETURN] * IndentPPDirectives: None
This commit is contained in:
parent
8c909c5d98
commit
0444a6f094
3 changed files with 15 additions and 10 deletions
|
@ -69,7 +69,12 @@ F3dzexFlag sUCodeDisasMtxFlags[] = {
|
|||
F3DZEX_FLAG(G_MTX_PUSH, G_MTX_NOPUSH),
|
||||
};
|
||||
|
||||
typedef enum { COMBINER_A = 1, COMBINER_B, COMBINER_C, COMBINER_D } CombinerArg;
|
||||
typedef enum {
|
||||
COMBINER_A = 1,
|
||||
COMBINER_B,
|
||||
COMBINER_C,
|
||||
COMBINER_D
|
||||
} CombinerArg;
|
||||
|
||||
const char* UCodeDisas_GetCombineColorName(u32 value, u32 arg) {
|
||||
const char* ret = "?";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue